blob: 1f70bcb89d813fa5d101a0012f4b5e58d645a632 [file] [log] [blame]
// PR c++/29733
template<typename T> void foo()
{
T t = 0; // { dg-error "function type" }
}
void bar()
{
foo<int()>();
}