1*c87b03e5Sespie // Build don't link:
2*c87b03e5Sespie // Special g++ Options: -w
3*c87b03e5Sespie // GROUPS passed static-mem
4*c87b03e5Sespie // static-mem file
5*c87b03e5Sespie // From: bunch@tazboy.jpl.nasa.gov (Walt Bunch)
6*c87b03e5Sespie // Date:     Thu, 23 Jun 94 14:58:35 UNI
7*c87b03e5Sespie // Subject:  bug report
8*c87b03e5Sespie // Message-ID: <9406232258.AA03897@tazboy.JPL.NASA.GOV>
9*c87b03e5Sespie 
10*c87b03e5Sespie 
11*c87b03e5Sespie class A
12*c87b03e5Sespie {
13*c87b03e5Sespie public:
F(int i)14*c87b03e5Sespie   static void F (int i) {}
G(int i)15*c87b03e5Sespie   static void A::G (int i) {}
16*c87b03e5Sespie };
17*c87b03e5Sespie 
main()18*c87b03e5Sespie main ()
19*c87b03e5Sespie {
20*c87b03e5Sespie   A::F (17);
21*c87b03e5Sespie   A::G (42);
22*c87b03e5Sespie }
23*c87b03e5Sespie 
24