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
[sdks] Fix README.md
[mono-project.git]
/
mcs
/
tests
/
gtest-500.cs
blob
f44834f18070a5aea981ecaec81305253a540b5e
1
using
System
;
2
3
interface
I
4
{
5
}
6
7
struct
S
:
I
8
{
9
}
10
11
class
Program
12
{
13
public static int
Main
()
14
{
15
int
?
a
=
5
;
16
int
?
b
=
5
;
17
IComparable ic_a
=
a
;
18
IComparable ic_b
=
b
;
19
if
(
ic_a
.
CompareTo
(
ic_b
) !=
0
)
20
return
1
;
21
22
S
?
s
=
new
S
();
23
I iface
=
s
;
24
25
return
0
;
26
}
27
}