fork download
  1. #include <iostream>
  2.  
  3. template <typename T>
  4. void f()
  5. {
  6. std::cout << typeid(const T).name() << "\n";
  7. }
  8.  
  9. auto main() -> int
  10. {
  11. f<int*>();
  12. }
Success #stdin #stdout 0s 5376KB
stdin
Standard input is empty
stdout
Pi