fork download
  1. #include <string>
  2.  
  3. template <class T>
  4. class Whooper : T
  5. {
  6.  
  7. };
  8.  
  9. class Pooper : Whooper<std::string> {
  10.  
  11. };
  12.  
  13. int main() {
  14. Pooper pooper;
  15. }
Success #stdin #stdout 0s 4132KB
stdin
Standard input is empty
stdout
Standard output is empty