PR 5646
[binutils.git] / gold / testsuite / version_script.map
blobc7662af8d3c54d4216da2934403e2a077ea397ba
1 V1 {
2    global:
3         extern "C++"
4         {
5            "bar()";
6            "baz(int*)";
7         };
8         foo;
9         blaza*;
10         bar*;
11         # Make sure we parse "extern" when it's not first thing in the section.
12         extern "C++"
13         {
14            myns::*;
15         };
16         # Would be a keyword in a linker script.
17         SECTIONS;
18         sizeof_headers;
19         # Crazy globbiness
20         glob*f[^A-Zo]stuff;
22    local:
23         *foo*;
26 V2 {
27    global:
28         extern "C++" {
29            otherns::stuff;
30         };
31         blaz*;
32         foo;
33 } V1;