1// RUN: %clang_cc1 -fsyntax-only -verify %s 2 3struct s; // expected-note 7 {{forward declaration of 'struct s'}} 4 5// standard string matching 6struct 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 matching 10struct s r1; // expected-error-re {{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