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
/
test-895.cs
blob
bef7982680cbebdda88100e49e8c6fd45e656cda
1
using
System
;
2
3
class
X
4
{
5
public void
Test
(
int
g
,
out int
results
)
6
{
7
if
((
results
=
Foo
(
g
>
0
?
1
:
2
)) !=
4
)
8
{
9
Console
.
WriteLine
(
results
);
10
}
11
}
12
13
int
Foo
(
object
o
)
14
{
15
return
4
;
16
}
17
18
public static void
Main
()
19
{
20
}
21
}