1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-14 19:08:07 +08:00
Files
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;
};