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

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