1 // PR c++/33465
2 
3 int foo(int);
4 
bar(double d)5 void bar(double d)
6 {
7   foo(d)();  // { dg-error "foo\\(\\(int\\)d\\)" }
8 }
9