]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Import/forward-declared-struct/test.c
Vendor import of clang trunk r300422:
[FreeBSD/FreeBSD.git] / test / Import / forward-declared-struct / test.c
1 // RUN: clang-import-test -import %S/Inputs/S1.c --import %S/Inputs/S2.c -expression %s
2 void expr() {
3   struct S MyS;
4   MyS.a = 3;
5 }