]> Git Repo - binutils.git/blame - ld/cdtest-func.cc
* ldlang.c (lang_size_sections): When no address is given for a
[binutils.git] / ld / cdtest-func.cc
CommitLineData
917bffa7
PB
1// test program for Class Foo
2
3#include "cdtest-foo.h"
4
5static Foo static_foo( "static_foo");
6
7Foo f()
8{
9 Foo x;
10 return x;
11}
12
13void g()
14{
15 Foo other_foo1 = Foo( "other_foo1"), other_foo2 = Foo( "other_foo2");
16 other_foo2 = other_foo1;
17}
This page took 0.161821 seconds and 4 git commands to generate.