cmake/Tests/CompileFeatures/cxx_deleted_functions.cpp
2015-04-27 22:25:09 +02:00

7 lines
74 B
C++

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