(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp1y/
var-templ24.C
// { dg-do compile { target c++14 } }

template <class T> bool Foo = Foo<int>;
template <> bool Foo<int> = true;
int i = Foo<char>;