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
Fix LLVM linker flags for 6.0.
[mono-project.git]
/
mcs
/
tests
/
test-11.cs
blob
c122201d472ed8424b10b723f399f77ea1661763
1
using
System
;
2
using
System
.
IO
;
3
4
public class
Test
{
5
6
public static int
boxtest
()
7
{
8
int
i
=
123
;
9
object
o
=
i
;
10
// int j = (int) o;
11
12
// if (i != j)
13
// return 1;
14
15
return
0
;
16
}
17
18
public static int
Main
() {
19
if
(
boxtest
() !=
0
)
20
return
1
;
21
22
23
return
0
;
24
}
25
}
26
27