fork(1) download
  1. #include <vector>
  2.  
  3. template<typename T>
  4. void f(T t)
  5. {
  6. if (false)
  7. f(std::vector<T>());
  8. }
  9.  
  10. int main()
  11. {
  12. f(0);
  13. return 0;
  14. }
Compilation error #stdin #stdout 0s 3408KB
stdin
Standard input is empty
stdout
Standard output is empty