repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Move Enum and CorElementType to shared (dotnet/coreclr#23177)
[mono-project.git]
/
mcs
/
tests
/
test-323.cs
blob
d0ce8685a222a95a33beaea90d613fc3f916512e
1
class
X
{
2
enum
A
:
byte
{
3
x
,
y
,
z
4
}
5
const
A foo
=
A
.
x
|
A
.
y
;
6
7
public static void
Main
() {}
8
}
9
10
11
12
13
14