CMake/Tests/CompileFeatures/cxx_deleted_functions.cpp

7 lines
74 B
C++

struct A
{
A(const A&) = delete;
A& operator=(const A&) = delete;
};