Searched defs:CopyConstructible (Results 1 – 5 of 5) sorted by relevance
19 struct CopyConstructible { struct21 constexpr explicit CopyConstructible(int i) : x(i) { } in CopyConstructible() argument22 …constexpr CopyConstructible(CopyConstructible const& other) noexcept(NoexceptCopy) : x(other.x) { } in CopyConstructible() function24 constexpr bool operator==(CopyConstructible const& other) const { return x == other.x; } in operator ==() argument
23 struct CopyConstructible { struct25 constexpr explicit CopyConstructible(int x) : value(x) {} in CopyConstructible() argument27 CopyConstructible& operator=(CopyConstructible const&) = delete; argument31 static_assert(!std::copyable<CopyConstructible>); argument
33 struct CopyConstructible { struct37 CopyConstructible(const CopyConstructible&) = default; argument
25 struct CopyConstructible { struct
25 TEST(CopyableFixedSizeVector, CopyConstructible) { in TEST() argument