fork download
  1. #include <iostream>
  2. #include <typeinfo>
  3.  
  4. int main()
  5. {
  6. auto a = {1, 2};
  7. std::cout << typeid(a).name() << std::endl;
  8. }
  9.  
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
St16initializer_listIiE