Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/test/std/concepts/concepts.lang/concept.copyconstructible/
H A Dcopy_constructible.compile.pass.cpp124 struct CopyCtorProhibitsMutableRef { struct
125 CopyCtorProhibitsMutableRef(CopyCtorProhibitsMutableRef&&) noexcept = default;
126 CopyCtorProhibitsMutableRef(const CopyCtorProhibitsMutableRef&) = default;
127 CopyCtorProhibitsMutableRef(CopyCtorProhibitsMutableRef&) = delete;
129 static_assert(!std::copy_constructible<CopyCtorProhibitsMutableRef>);