1 | // RUN: %clang_cc1 -fmodules -fmodule-name=Foo -I %S/Inputs/autoload-subdirectory/ %s -verify |
---|---|
2 | // expected-no-diagnostics |
3 | |
4 | #include "a.h" |
5 | #import "c.h" |
6 | |
7 | int main() { |
8 | foo neko; |
9 | return 0; |
10 | } |
11 |
1 | // RUN: %clang_cc1 -fmodules -fmodule-name=Foo -I %S/Inputs/autoload-subdirectory/ %s -verify |
---|---|
2 | // expected-no-diagnostics |
3 | |
4 | #include "a.h" |
5 | #import "c.h" |
6 | |
7 | int main() { |
8 | foo neko; |
9 | return 0; |
10 | } |
11 |