]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Import/missing-import/test.c
Vendor import of clang trunk r290819:
[FreeBSD/FreeBSD.git] / test / Import / missing-import / test.c
1 // RUN: not clang-import-test -import %S/Inputs/S.c -expression %s 2>&1 | FileCheck %s
2 // CHECK: {{.*}}Couldn't open{{.*}}Inputs/S.c{{.*}}
3 void expr() {
4   struct S MyS;
5   void *MyPtr = &MyS;
6 }