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