Lines Matching full:here
3 class X; // expected-note 2{{here}}
7 template<typename T> struct Y; // expected-note{{did you mean class here?}}
11 class A; // expected-note{{previous use is here}}
14 class B; // expected-note{{did you mean struct here?}}
15 class B; // expected-note{{previous use is here}}\
16 // expected-note{{did you mean struct here?}}
18 struct B {}; // expected-warning{{'B' defined as a struct here but previously declared as a class}}
20 class C; // expected-note{{previous use is here}}
22 // expected-note{{previous use is here}}\
23 // expected-note{{did you mean class here?}}
25 // expected-note{{previous use is here}}
27 // expected-note{{did you mean class here?}}
28 class C {}; // expected-warning{{'C' defined as a class here but previously declared as a struct}}
30 struct D {}; // expected-note{{previous definition is here}}\
31 // expected-note{{previous use is here}}
35 // expected-note{{did you mean struct here?}}
47 template<class U> class G; // expected-note{{previous use is here}}\
48 // expected-note{{did you mean struct here?}}
50 template<class U> struct G {}; // expected-warning{{'G' defined as a struct template here but previously declared as a class template}}
57 CHECK: note: previous use is here
64 CHECK: note: previous use is here
68 CHECK: warning: 'Y' defined as a class template here but
72 CHECK: note: did you mean class here?
80 CHECK: note: previous use is here
87 CHECK: note: previous use is here
90 CHECK: 'B' defined as a struct here but previously declared as a class
93 CHECK: note: did you mean struct here?
97 CHECK: note: did you mean struct here?
105 CHECK: note: previous use is here
111 CHECK: note: previous use is here
117 CHECK: note: previous use is here
120 CHECK: warning: 'C' defined as a class here but previously declared as a struct
123 CHECK: note: did you mean class here?
127 CHECK: note: did you mean class here?
135 CHECK: note: previous definition is here
141 CHECK: note: previous use is here
144 CHECK: note: did you mean struct here?
154 CHECK: note: previous use is here
157 CHECK: warning: 'G' defined as a struct template here but previously declared as a class template
160 CHECK: note: did you mean struct here?