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
Merge pull request #15293 from lewing/wasm-clean
[mono-project.git]
/
mcs
/
tests
/
test-671.cs
blob
87395cdeb3e6c33033b6d8b3c24a9d86763feca0
1
using
System
;
2
3
class
C
4
{
5
public static int
Main
()
6
{
7
return
Bar
(
null
) ?
1
:
0
;
8
}
9
10
static bool
Bar
(
object
t
)
11
{
12
return
t
is object
;
13
}
14
}
15