Home
last modified time | relevance | path

Searched refs:non_const_copy (Results 1 – 1 of 1) sorted by relevance

/external/clang/test/SemaCXX/
Dcxx0x-cursory-default-delete.cpp9 struct non_const_copy { struct
10 non_const_copy(non_const_copy&);
11 non_const_copy& operator = (non_const_copy&) &;
12 non_const_copy& operator = (non_const_copy&) &&;
13 non_const_copy() = default; // expected-note {{not viable}}
16 non_const_copy::non_const_copy(non_const_copy&) = default; // expected-note {{not viable}} argument
17 non_const_copy& non_const_copy::operator = (non_const_copy&) & = default; // expected-note {{not vi…
18 non_const_copy& non_const_copy::operator = (non_const_copy&) && = default; // expected-note {{not v…
25 non_const_copy ncc; in fn1()
26 non_const_copy ncc2 = ncc; in fn1()
[all …]