blob: 9b637ba708b7f048e3d479b836efb2f424294b4a [file] [log] [blame]
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;
};