cxx_defaulted_functions.cpp 60 B

123456789
  1. struct A {
  2. A() = default;
  3. };
  4. void someFunc()
  5. {
  6. A a;
  7. }