fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. template<typename T>
  5. struct foo {};
  6. template<typename X = int> using bar = foo<X>;
  7.  
  8. int main() {
  9. // your code goes here
  10. return 0;
  11. }
Success #stdin #stdout 0s 4160KB
stdin
Standard input is empty
stdout
Standard output is empty