Home | History | Annotate | Download | only in temp.alias
      1 // RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s
      2 
      3 template<typename T> using U = T;
      4 
      5 // The name of the alias template is a template-name.
      6 U<char> x;
      7 void f(U<int>);
      8 typedef U<U<U<U<int>>>> I;
      9