rt_gccstream/gcc/testsuite/g++.old-deja/g++.other/lookup1.C

10 lines
166 B
C

// { dg-do assemble }
// simple test for id from base class during class defn
struct foo {
enum { blah = 1 };
};
struct bar : public foo {
char cache[blah];
};