OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NCCTNT
(Results
1 - 2
of
2
) sorted by null
/external/clang/test/CXX/special/class.copy/
p12-0x.cpp
111
struct
NCCTNT
: NonConstCopy, TNT {};
113
static_assert(!__has_trivial_copy(
NCCTNT
), "");
114
static_assert(!__is_trivially_constructible(
NCCTNT
,
NCCTNT
), "");
115
static_assert(!__is_trivially_constructible(
NCCTNT
,
NCCTNT
&), "");
116
static_assert(!__is_trivially_constructible(
NCCTNT
, const
NCCTNT
&), "");
117
static_assert(!__is_trivially_constructible(
NCCTNT
, volatile
NCCTNT
&), "")
[
all
...]
p25-0x.cpp
105
struct
NCCTNT
: NonConstCopy, TNT {};
107
static_assert(!__has_trivial_assign(
NCCTNT
), "");
108
static_assert(!__is_trivially_assignable(
NCCTNT
,
NCCTNT
), "");
109
static_assert(!__is_trivially_assignable(
NCCTNT
,
NCCTNT
&), "");
110
static_assert(!__is_trivially_assignable(
NCCTNT
, const
NCCTNT
&), "");
111
static_assert(!__is_trivially_assignable(
NCCTNT
, volatile
NCCTNT
&), "")
[
all
...]
Completed in 156 milliseconds