blob: d8f7cbf41ec8719a6a984c8f17839f499b58f569 [file] [log] [blame]
// { dg-do compile { target c++14 } }
template <class T> bool Foo = Foo<int>;
template <> bool Foo<int> = true;
int i = Foo<char>;