HomeSort by relevance Sort by last modified time
    Searched refs:NotDefaultConstructible (Results 1 - 2 of 2) sorted by null

  /external/clang/test/SemaTemplate/
explicit-instantiation.cpp 28 struct NotDefaultConstructible { // expected-note{{candidate constructor (the implicit copy constructor)}}
29 NotDefaultConstructible(int); // expected-note{{candidate constructor}}
32 template NotDefaultConstructible X0<NotDefaultConstructible>::value; // expected-note{{instantiation}}
default-expr-arguments.cpp 70 struct NotDefaultConstructible { // expected-note 2{{candidate}}
71 NotDefaultConstructible(int); // expected-note 2{{candidate}}
74 void test_x0_not_default_constructible(X0<NotDefaultConstructible> xn) {
75 xn.f(NotDefaultConstructible(17));
95 void test_x2(X2<int> x2i, X2<NotDefaultConstructible> x2n) {
98 x2n(NotDefaultConstructible(17));

Completed in 225 milliseconds