Initial revision
[binutils.git] / ld / testsuite / ld-cdtest / cdtest-bar.cc
blob79000e33954ced68c47071eca9d60a1b393eb4b6
1 // test program for Class Foo
3 #include "cdtest-foo.h"
5 static Foo static_foo( "static_foo");
7 Foo f()
9 Foo x;
10 return x;
13 void g()
15 Foo other_foo1 = Foo( "other_foo1"), other_foo2 = Foo( "other_foo2");
16 other_foo2 = other_foo1;