fork(1) download
  1. struct A{};
  2.  
  3. template<class T = A>
  4. struct B{
  5. void foo(){}
  6. };
  7.  
  8. int main()
  9. {
  10. B<> b;
  11. }
Success #stdin #stdout 0.02s 2676KB
stdin
Standard input is empty
stdout
Standard output is empty