summaryrefslogtreecommitdiff
path: root/tests/headers/issue-639-typedef-anon-field.hpp
blob: efd6c4f40a7271d3f1499007d39f89a4e64010c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class Foo {
 public:
  typedef struct {
      int abc;
  } Bar;

  Bar bar;
};

class Baz {
 public:
  typedef struct {
      int abc;
  } Bar;
};