1 2 3 4 5 6 7 8 9 10 11
// PR c++/29733 template<typename T> void foo() { T t = 0; // { dg-error "function type" } } void bar() { foo<int()>(); }