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
Take stars out of types where they make more sense.
[mono-project.git]
/
mcs
/
tests
/
gtest-375.cs
blob
f2a43b9228507eeea87d935bed1b4b1d1bb5cd98
1
using
System
;
2
3
public class
X
{
4
public static bool
Compute
(
int
x
)
5
{
6
return
x
==
null
;
7
}
8
9
public static bool
Compute2
(
int
x
)
10
{
11
return
x
!=
null
;
12
}
13
14
public static int
Main
()
15
{
16
if
(
Compute
(
1
) !=
false
)
17
return
1
;
18
19
if
(
Compute2
(
1
) !=
true
)
20
return
1
;
21
22
return
0
;
23
}
24
}