Merge "Fix assert on saving settings"
[trojita.git] / cmake / FindCXXFeatures / cxx11-test-defaulted_functions.cxx
blobc7ca5b894402a02193dc351bacd4d5e490f01cad
1 struct A {
2 int foo;
4 A(int foo): foo(foo) {}
5 A() = default;
6 };
8 int main(void)
10 A bar;
11 A baz(10);
12 return 0;