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
[sdks] Fix README.md
[mono-project.git]
/
mcs
/
tests
/
test-544.cs
blob
d56c5b2354f05532dad1a615399dc17fff9adaed
1
enum
ByteEnum
:
byte
{
2
One
=
1
,
3
Two
=
2
4
}
5
6
class
X
{
7
public static void
Main
()
8
{
9
ByteEnum b
=
ByteEnum
.
One
;
10
11
switch
(
b
){
12
case
ByteEnum
.
One
:
return
;
13
case
ByteEnum
.
One
|
ByteEnum
.
Two
:
return
;
14
}
15
}
16
}
17