diff options
Diffstat (limited to 'testsuite/dwz.tests/odr-loc-2.cc')
-rw-r--r-- | testsuite/dwz.tests/odr-loc-2.cc | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testsuite/dwz.tests/odr-loc-2.cc b/testsuite/dwz.tests/odr-loc-2.cc new file mode 100644 index 0000000..7cf832b --- /dev/null +++ b/testsuite/dwz.tests/odr-loc-2.cc @@ -0,0 +1,14 @@ +struct bbb +{ + int member_four; +}; +struct ccc; + +struct aaa +{ + struct bbb *member_one; + struct ccc *member_two; +}; + +struct aaa var2; +struct bbb var4; |