OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:non_const_copy
(Results
1 - 1
of
1
) sorted by null
/external/clang/test/SemaCXX/
cxx0x-cursory-default-delete.cpp
9
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}}
15
non_const_copy
::
non_const_copy
(non_const_copy&) = default; // expected-note {{not viable}
[
all
...]
Completed in 79 milliseconds