CMake/Tests/CompileFeatures/cxx_deleted_functions.cpp
2014-04-08 11:05:55 +02:00

7 lines
74 B
C++

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