brintos

brintos / llvm-project-archived public Read only

0
0
Text · 191 B · e76f705 Raw
11 lines · cpp
1// RUN: %clang_cc1 -fmodules -fmodule-name=Foo -I %S/Inputs/autoload-subdirectory/ %s -verify2// expected-no-diagnostics3 4#include "a.h"5#import "c.h"6 7int main() {8  foo neko;9  return 0;10}11