fork download
  1. struct Foo
  2. {
  3. template <typename A, typename B>
  4. static void myFunction() { }
  5. };
  6.  
  7. int main()
  8. {
  9. Foo::template myFunction<int,double>();
  10.  
  11. return 0;
  12. }
Success #stdin #stdout 0s 5316KB
stdin
Standard input is empty
stdout
Standard output is empty