fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct foo {
  5.  
  6. };
  7.  
  8. template <typename T>
  9. void getName() {
  10. puts(__PRETTY_FUNCTION__);
  11. }
  12.  
  13.  
  14. int main() {
  15. // your code goes here
  16.  
  17. getName<int>();
  18. getName<foo>();
  19. return 0;
  20. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
void getName() [with T = int]
void getName() [with T = foo]