1// Unable to find any matching overload for call to function
2
3void foo();
4
5void bar(int x) {
6    foo(x);
7}
8