(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
initlist113.C
// PR c++/89297
// { dg-do compile { target c++11 } }

int id(int v) { return v; }
float id(float v) { return v; }

template <typename>
int foo(int v)
{
    return int{id(v)};
}