summaryrefslogtreecommitdiffstats
path: root/testsuite/dwz.tests/odr.cc
blob: 9505cb3e93d6ae6e4bcab8f7d412973fc9830196 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#if NAMESPACE
namespace ns {
#endif
  KIND bbb;
  KIND ccc {
    int member_three;
  };
#if NAMESPACE
}
#endif

#include "odr.h"

#if NAMESPACE
KIND ns::aaa var1;
KIND ns::ccc var3;
#else
KIND aaa var1;
KIND ccc var3;
#endif

int
main (void)
{
  return 0;
}