Lines Matching full:const
6 // const-qualified type T, T shall be a class type with a
13 const NoUserDefault x1; // expected-error{{default initialization of an object of const type 'const NoUserDefault' without a user-provided default constructor}}
14 const HasUserDefault x2;
15 const int x3; // expected-error{{default initialization of an object of const type 'const int'}}
20 struct s1 { static const s0 foo; };
21 const struct s0 s1::foo; // expected-error{{default initialization of an object of const type 'const struct s0' without a user-provided default constructor}}
25 static const s0 foo;
28 template<> const struct s0 s2<int>::foo; // okay