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
[tuner] handle the case with multiple "preserve" attributes
[mono-project.git]
/
mcs
/
tests
/
test-642.cs
blob
d5e3a18f5e916ffdae03045c98fe1becb51f18ac
1
enum
E
:
byte
{ }
2
3
class
C
4
{
5
static
E e
;
6
static byte
b
;
7
static ushort
u
;
8
9
public static int
Main
()
10
{
11
b
|= (
byte
)
e
;
12
u
|= (
ushort
)
e
;
13
return
b
;
14
}
15
}