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
/
gtest-590.cs
blob
96c276a5812d21bd92d01a97ee552a01eb5b91a6
1
using
System
;
2
3
enum
E
4
{
5
V
6
}
7
8
class
C
9
{
10
public static void
Main
()
11
{
12
byte
?
foo
=
0
;
13
E e
=
0
;
14
var
res
=
foo
-
e
;
15
Console
.
WriteLine
(
res
);
16
var
res2
=
e
-
foo
;
17
Console
.
WriteLine
(
res2
);
18
res
=
null
;
19
res2
=
null
;
20
}
21
}