repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
forw_enum14.C
blob
ac38c18386372810f6f1d39b032ac262ce827a43
1
// PR c++/49604
2
// { dg-do compile { target c++11 } }
3
4
class MyTable {
5
public:
6
enum Constants : unsigned;
7
};
8
9
enum MyTable::Constants : unsigned {
10
LENGTH = 12,
11
};
12
13
int main()
14
{
15
return MyTable::LENGTH;
16
}