• Home
  • Raw
  • Download

Lines Matching full:here

3 class X; // expected-note 2{{here}}
7 template<typename T> struct Y; // expected-note{{did you mean class here?}}
17 class A; // expected-note{{previous use is here}}
20 class B; // expected-note{{did you mean struct here?}}
21 class B; // expected-note{{previous use is here}}\
22 // expected-note{{did you mean struct here?}}
24 struct B {}; // expected-warning{{'B' defined as a struct here but previously declared as a class}}
26 class C; // expected-note{{previous use is here}}
28 // expected-note{{previous use is here}}\
29 // expected-note{{did you mean class here?}}
31 // expected-note{{previous use is here}}
33 // expected-note{{did you mean class here?}}
34 class C {}; // expected-warning{{'C' defined as a class here but previously declared as a struct}}
36 struct D {}; // expected-note{{previous definition is here}}\
37 // expected-note{{previous use is here}}
41 // expected-note{{did you mean struct here?}}
53 template<class U> class G; // expected-note{{previous use is here}}\
54 // expected-note{{did you mean struct here?}}
56 template<class U> struct G {}; // expected-warning{{'G' defined as a struct template here but prev…
63 CHECK: note: previous use is here
70 CHECK: note: previous use is here
74 CHECK: warning: 'Y' defined as a class template here but
78 CHECK: note: did you mean class here?
86 CHECK: note: previous use is here
93 CHECK: note: previous use is here
96 CHECK: 'B' defined as a struct here but previously declared as a class
99 CHECK: note: did you mean struct here?
103 CHECK: note: did you mean struct here?
111 CHECK: note: previous use is here
117 CHECK: note: previous use is here
123 CHECK: note: previous use is here
126 CHECK: warning: 'C' defined as a class here but previously declared as a struct
129 CHECK: note: did you mean class here?
133 CHECK: note: did you mean class here?
141 CHECK: note: previous definition is here
147 CHECK: note: previous use is here
150 CHECK: note: did you mean struct here?
160 CHECK: note: previous use is here
163 CHECK: warning: 'G' defined as a struct template here but previously declared as a class template
166 CHECK: note: did you mean struct here?