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

struct A
{
  A() = default;
};

void someFunc()
{
  A a;
}