15 lines · c
1// RUN: %clang_cc1 -fsyntax-only -verify %s2 3struct s; // expected-note 7 {{forward declaration of 'struct s'}}4 5// standard string matching6struct s s1; // expected-error {{tentative definition has type 'struct s' that is never completed}}7struct s s2; // expected-error {{tentative definition has type}}8 9// regex matching10struct s r1; // expected-error {{tentative definition has type 'struct s' that is never completed}}11struct s r2; // expected-error-re {{tentative definition has type '{{.*[[:space:]]*.*}}' that is never completed}}12struct s r3; // expected-error-re {{tentative definition has type '{{(.*)[[:space:]]*(.*)}}' that is never completed}}13struct s r4; // expected-error-re {{{{^}}tentative}}14struct s r5; // expected-error-re {{completed{{$}}}}15