cxx_decltype.cpp 74 B

1234567
  1. int someFunc()
  2. {
  3. int i = 0;
  4. decltype(i) other = 0;
  5. return other;
  6. }