1 // { dg-do compile { target c++14 } }
2 
3 template <class T> bool Foo = Foo<int>;
4 template <> bool Foo<int> = true;
5 int i = Foo<char>;
6