fork download
  1. #include <iostream>
  2.  
  3. template<typename T, typename... Args>
  4. void fun(T t, Args... args)
  5. {
  6. std::cout << t;
  7. }
  8. int main()
  9. {
  10. fun(1, 2.0, "Ranjan", "hi");//Error happens here
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 2896KB
stdin
Standard input is empty
stdout
1