Home
last modified time | relevance | path

Searched defs:NonLiteral (Results 1 – 5 of 5) sorted by relevance

/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
Dp6.cpp11 struct NonLiteral { struct
12 NonLiteral() {} in NonLiteral() argument
13 NonLiteral(int) {} // expected-note 2{{here}} in NonLiteral() argument
14 operator int() const { return 0; } in operator int()
Dp3.cpp11 struct NonLiteral { // expected-note 2{{no constexpr constructors}} struct
12 NonLiteral() {} in NonLiteral() function
13 NonLiteral(int) {} in NonLiteral() function
Dp4.cpp11 struct NonLiteral { // expected-note 2{{no constexpr constructors}} struct
12 NonLiteral() {} in NonLiteral() function
13 NonLiteral(int) {} in NonLiteral() function
/external/clang/test/CXX/basic/basic.types/
Dp10.cpp3 struct NonLiteral { NonLiteral(); }; struct
85 constexpr int f(CtorArg<NonLiteral>) { return 0; } // ok, ctor is still constexpr in f()
118 constexpr int f(MemberType<NonLiteral>) { return 0; } // expected-error {{not a literal type}} in f()
/external/clang/test/SemaCXX/
Dliteral-type.cpp41 struct NonLiteral { NonLiteral(); }; struct