summaryrefslogtreecommitdiffstats
path: root/Tests/CompileFeatures/cxx_defaulted_functions.cpp
blob: b679a926990eb5ba0e4a284f296716d102932776 (plain)
1
2
3
4
5
6
7
8
9

struct A {
  A() = default;
};

void someFunc()
{
  A a;
}