fork download
  1.  
  2. template <typename T>
  3. class Foo {
  4. T t;
  5. };
  6.  
  7. template <typename T>
  8. using Bar = Foo<T>;
  9.  
  10. int main() {
  11. Foo<int> x;
  12. Bar<int> y;
  13. return 0;
  14. }
Success #stdin #stdout 0s 5364KB
stdin
Standard input is empty
stdout
Standard output is empty