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
/
gtest-137.cs
blob
29a236118d679b7eb3f2ba4893d2e7d80c155f5c
1
using
System
;
2
3
class
X
4
{
5
public static int
Main
()
6
{
7
int
?
a
=
4
;
8
int
?
b
= -
a
;
9
Console
.
WriteLine
(
b
);
10
11
int
?
x
=
42
;
12
uint
y
=
42
;
13
14
bool
r
= (
x
==
y
);
15
if
(!
r
)
16
return
1
;
17
18
if
(
x
!=
y
)
19
return
2
;
20
21
return
0
;
22
}
23
}