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
[interp] Fall back to old implementation when calling on proxy
[mono-project.git]
/
mcs
/
tests
/
gtest-365.cs
blob
ccd0d915fa2ae0fb2b40558f97e1ec1c53d7be64
1
using
System
;
2
3
namespace
B
4
{
5
class
Program
6
{
7
public static int
Main
()
8
{
9
int
?
i
=
0
;
10
bool
b
=
i
== (
int
?)
null
;
11
if
(
b
)
12
return
1
;
13
14
if
(
i
== (
int
?)
null
)
15
return
2
;
16
17
Console
.
WriteLine
(
b
);
18
return
0
;
19
}
20
}
21
}
22