OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NotDefaultConstructible
(Results
1 - 2
of
2
) 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));
Completed in 299 milliseconds