parent
645ab7fea8
commit
8e29f2b160
5 changed files with 13 additions and 1 deletions
@ -0,0 +1 @@ |
||||
int func1() { return 42; } |
@ -0,0 +1 @@ |
||||
int func2() { return 42; } |
@ -0,0 +1,3 @@ |
||||
project('samefile', 'c') |
||||
|
||||
test('basic', executable('prog', 'prog.c', 'd1/file.c', 'd2/file.c')) |
@ -0,0 +1,6 @@ |
||||
int func1(); |
||||
int func2(); |
||||
|
||||
int main(int argc, char **argv) { |
||||
return func1() - func2(); |
||||
} |
Loading…
Reference in new issue