repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
tests
/
test-323.cs
blob
76f32c90674105de462b2df16bd630241914a8a0
1
class
X
{
2
enum
A
:
byte
{
3
x
,
y
,
z
4
}
5
const
A foo
=
A
.
x
|
A
.
y
;
6
7
static void
Main
() {}
8
}
9
10
11
12
13
14