Mercurial > hg > CbC > CbC_llvm
comparison clang/test/Misc/verify.c @ 150:1d019706d866
LLVM10
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 15:10:13 +0900 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
147:c2174574ed3a | 150:1d019706d866 |
---|---|
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 {{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{{$}}}} |