Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
incomplete9.C
blob: 9e032326e09ebbf8d12f1444cf31cf30efb0efed [
file
] [
log
] [
blame
]
// PR c++/79420
template
<int>
int
f
()
{
return
f
.
x
;
// { dg-error "overloaded function with no contextual type information" }
}
void
g
()
{
f
<
0
>
();
}