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
2009-03-11 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
gtest-387.cs
blob
a13c4d2e7051e9cd23bcfaa6a9a88d88aa8b7d5e
1
class
C
2
{
3
public static int
Main
()
4
{
5
sbyte
?
s
=
null
;
6
long
?
tt
= +
s
;
7
if
(
tt
!=
null
)
8
return
1
;
9
10
long
?
l
=
null
;
11
l
= +
l
;
12
if
(
l
!=
null
)
13
return
2
;
14
15
return
0
;
16
}
17
}