repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
reflect: canonicalize types returned by StructOf() and friends
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.brendan
/
enum10.C
blob
97d5d8e34a8fee56aadb09f48d2a9164b25c829e
1
// { dg-do assemble }
2
// GROUPS passed enums
3
class Type
4
{
5
public:
6
7
enum name
8
{
9
A
10
};
11
};
12
13
class A
14
{
15
};
16
17
class B: public A
18
{
19
public:
20
B();
21
};