repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
monotouch uses the real HttpWebRequest
[mcs.git]
/
tests
/
test-671.cs
blob
817e8e2a38401037333d7ac647b6c9e1338e5da1
1
using
System
;
2
3
class
C
4
{
5
static int
Main
()
6
{
7
return
Bar
(
null
) ?
1
:
0
;
8
}
9
10
static bool
Bar
(
object
t
)
11
{
12
return
Bar
is object
;
13
}
14
}
15