summaryrefslogtreecommitdiff
path: root/libexec/ld.so/test/a.h
diff options
context:
space:
mode:
Diffstat (limited to 'libexec/ld.so/test/a.h')
-rw-r--r--libexec/ld.so/test/a.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/libexec/ld.so/test/a.h b/libexec/ld.so/test/a.h
new file mode 100644
index 00000000000..0cdaefe8777
--- /dev/null
+++ b/libexec/ld.so/test/a.h
@@ -0,0 +1,14 @@
+class B {
+public:
+ B();
+ ~B();
+ int i;
+};
+
+class AA {
+ B b;
+public:
+ AA();
+ ~AA();
+ int i;
+};