Home
last modified time | relevance | path

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

/external/clang/test/CXX/drs/
Ddr15xx.cpp92 struct GenericMoveOnly { struct
93 GenericMoveOnly();
94 …template<class U> GenericMoveOnly(const GenericMoveOnly<U> &) = delete; // expected-note 5 {{marke…
95 GenericMoveOnly(const int &) = delete; // expected-note 2 {{marked deleted here}}
96 template<class U> GenericMoveOnly(GenericMoveOnly<U> &&);
97 GenericMoveOnly(int &&);
100 GenericMoveOnly<float> DR1579_Eligible(GenericMoveOnly<char> CharMO) { in DR1579_Eligible()
102 GenericMoveOnly<char> GMO; in DR1579_Eligible()
114 GenericMoveOnly<char> GlobalMO;
116 GenericMoveOnly<float> DR1579_Ineligible(int &AnInt, in DR1579_Ineligible()
[all …]