fork download
  1. #include <string>
  2.  
  3. template <typename A>
  4. void test_template(A a1, A a2)
  5. {
  6. }
  7.  
  8. int main(int argc, char const *argv[])
  9. {
  10. test_template<long>(1ULL, 1UL);
  11. return 0;
  12. }
Success #stdin #stdout 0s 3292KB
stdin
Standard input is empty
stdout
Standard output is empty