cxx_defaulted_functions.cpp 60 B

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