1// { dg-do assemble  }
2// Testcase for simple overloading resolution.
3
4void foo (int);
5void foo (int, int);
6
7void bar ()
8{
9  foo (1);
10  foo (1, 2);
11}
12