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

  /external/clang/test/SemaTemplate/
explicit-instantiation.cpp 29 struct NotDefaultConstructible { // expected-note{{candidate constructor (the implicit copy constructor)}} expected-note 0-1 {{candidate constructor (the implicit move constructor)}}
30 NotDefaultConstructible(int); // expected-note{{candidate constructor}}
33 template NotDefaultConstructible X0<NotDefaultConstructible>::value; // expected-note{{instantiation}}
default-expr-arguments.cpp 76 struct NotDefaultConstructible { // expected-note 2 {{candidate constructor (the implicit copy constructor) not viable}}
80 NotDefaultConstructible(int); // expected-note 2{{candidate}}
83 void test_x0_not_default_constructible(X0<NotDefaultConstructible> xn) {
84 xn.f(NotDefaultConstructible(17));
104 void test_x2(X2<int> x2i, X2<NotDefaultConstructible> x2n) {
107 x2n(NotDefaultConstructible(17));
  /external/googletest/googlemock/test/
gmock-nice-strict_test.cc 65 class NotDefaultConstructible {
67 explicit NotDefaultConstructible(int) {}
87 MOCK_METHOD0(ReturnNonDefaultConstructible, NotDefaultConstructible());

Completed in 554 milliseconds