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

using fl = float;

template<class T> const int V = 0;
template<> const int V<fl> = 42;

static_assert(V<float> == 42, "");