OSDN Git Service

* gcc.dg/20020201-1.c: Use cleanup-coverage_files.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / lookup1.C
1 // { dg-do assemble  }
2 // simple test for id from base class during class defn
3
4 struct foo {
5   enum { blah = 1 };
6 };
7 struct bar : public foo {
8   char cache[blah];
9 };