blob: 672530199c5e21442866be333dcb424e8e2ff215 [file] [log] [blame]
// { dg-do assemble }
// Based on bug report by Klaus-Georg Adams
// <Klaus-Georg.Adams@chemie.uni-karlsruhe.de>
struct bar {
typedef bar t;
};
struct foo : bar {
using bar::t;
t field;
t meth();
void baz(t arg);
};