• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1 -std=c++0x -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