summaryrefslogtreecommitdiff
path: root/tests/headers/issue-1443.hpp
blob: 9b637ba708b7f048e3d479b836efb2f424294b4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
struct Foo;

struct Bar {
  const Foo& f;
  unsigned m;
};

struct Baz {
  Foo& f;
  unsigned m;
};

struct Tar {
  const Foo&& f;
  unsigned m;
};

struct Taz {
  Foo&& f;
  unsigned m;
};