fork download
  1. template <typename... Args>
  2. struct A
  3. {
  4. template <int,bool>
  5. void f() {}
  6. };
  7.  
  8. int main()
  9. {
  10. A<int, bool> a;
  11. a.f<1,true>();
  12. }
  13.  
Success #stdin #stdout 0s 2892KB
stdin
Standard input is empty
stdout
Standard output is empty