summaryrefslogtreecommitdiffstats
path: root/Tests/CompileFeatures/cxx_deleted_functions.cpp
blob: 4ecb1e9d5e3e4a4c7a8856999af96107c9a8bbe5 (plain)
1
2
3
4
5
6

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