Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
lookup1.C
blob: c7f220fd60ed05ce1f85dd52625721d588e62b0f [
file
] [
log
] [
blame
]
// { 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
];
};