OSDN Git Service

* class.c (resolve_address_of_overloaded_function): Don't
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / inline18.C
1 // { dg-do assemble  }
2 // { dg-options "-O3" }
3 // Origin: Jakub Jelinek <jakub@redhat.com>
4
5 static void foo (int a)
6 {
7   a = a;
8 }
9
10 static void bar (void)
11 {
12   foo (-1);
13 }