PR c++/85553
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / alias-decl-51.C
blobcef3715845bcd5e4ce8848172b31a7a4b049d823
1 // PR c++/66743
2 // { dg-do compile { target c++11 } }
4 template< class T >
5 struct
6   type_is { using type = T; };
8 template< class T >
9   using underlying_type = type_is<__underlying_type(T)>;