blob: 181419bf0a2a7ad1bf5eb72577f024af9bdf752c [file] [log] [blame]
// { dg-do assemble }
template <class X> int f (X x, unsigned int j = 3) { return 29; }
template <class X> int f (X x, X y) { return 23; }
int foo () {
return f (7.0, 9.0);
}