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
[mono/tests] Fix out of tree build.
[mono-project.git]
/
mcs
/
tests
/
gtest-568.cs
blob
7a6bc0fdb0a050d635dc64681253f2455d9a6c38
1
using
System
;
2
3
class
X
4
{
5
public static int
Main
()
6
{
7
object
o
=
10
;
8
int
?
x
=
3
;
9
10
if
((
int
)
o
<
x
) {
11
return
1
;
12
}
13
14
if
(
x
> (
int
)
o
) {
15
return
2
;
16
}
17
18
return
0
;
19
}
20
}