fork(1) download
  1.  
  2. template <typename T>
  3. struct base
  4. {
  5. using type = T*;
  6.  
  7. };
  8.  
  9. template <typename T>
  10. struct derived : base<T>
  11. {
  12.  
  13. derived()
  14. {
  15. typename derived::type l;
  16. }
  17. };
  18. int main() {
  19.  
  20. derived<int> v;
  21. return 0;
  22. }
Success #stdin #stdout 0s 15232KB
stdin
Standard input is empty
stdout
Standard output is empty