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-pattern-10.cs
blob
967600e189c06e33bb006ebd32152315c00e8c8b
1
using
System
;
2
3
class
X
4
{
5
public static int
Main
()
6
{
7
Test
(
null
);
8
if
(
Test
((
long
)
0
) !=
1
)
9
return
1
;
10
11
object
o
=
"aa"
;
12
if
(
o
!=
null
) {
13
if
(
o
is long
s
) {
14
Console
.
WriteLine
(
s
);
15
}
16
}
else if
(
o
is string
s
) {
17
Console
.
WriteLine
(
s
);
18
}
19
20
return
0
;
21
}
22
23
static int
Test
(
object
o
)
24
{
25
if
(
o
is long
s
) {
26
return
1
;
27
}
28
29
return
0
;
30
}
31
}