xref: /minix/external/bsd/llvm/dist/clang/test/Misc/verify.c (revision 83133719)
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 
3 struct s; // expected-note 7 {{forward declaration of 'struct s'}}
4 
5 // standard string matching
6 struct s s1; // expected-error {{tentative definition has type 'struct s' that is never completed}}
7 struct s s2; // expected-error {{tentative definition has type}}
8 
9 // regex matching
10 struct s r1; // expected-error-re {{tentative definition has type 'struct s' that is never completed}}
11 struct s r2; // expected-error-re {{tentative definition has type '.*[[:space:]]*.*' that is never completed}}
12 struct s r3; // expected-error-re {{tentative definition has type '(.*)[[:space:]]*(.*)' that is never completed}}
13 struct s r4; // expected-error-re {{^tentative}}
14 struct s r5; // expected-error-re {{completed$}}
15