Lines Matching full:valueint
5 struct ValueInt
7 ValueInt(int v = 0) : ValueLength(v) {}
18 struct ValueBoth : ValueInt, ValueEnum { };
20 struct IndirectValueInt : ValueInt { };
21 struct TwoValueInts : ValueInt, IndirectValueInt { }; // expected-warning{{direct base 'ValueInt' is inaccessible due to ambiguity:\n struct TwoValueInts -> struct ValueInt\n struct TwoValueInts -> struct IndirectValueInt -> struct ValueInt}}
25 (void)new int[ValueInt(10)];
27 // expected-warning@-2{{implicit conversion from array size expression of type 'ValueInt' to integral type 'int' is a C++11 extension}}