blob: 079865d4eb511afc79b11bdbb6d9a0bcd19160df [file] [log] [blame]
// PR c++/18161
// { dg-options "" }
template <class T> struct Y;
template <> struct Y<bool> {};
template <typename T = typeof (1 == 1)> struct X { Y<T> a; };
template struct X <>;