// PR c++/100344 // { dg-do compile { target c++11 } } template constexpr int find_index() { return 1; } template void foo(T); template void get(T v) { foo()>(v); } int main() { get(0); }