cxx_uniform_initialization.cpp 66 B

123456789
  1. struct A {};
  2. struct B {
  3. B(A) {}
  4. };
  5. void Func()
  6. {
  7. B b{A{}};
  8. }