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
2007-05-25 Jonathan Chambers <joncham@gmail.com>
[mcs.git]
/
tests
/
test-111.cs
blob
4af5997bef9b2bd00fb6ad9fc9bdd85a236c34b8
1
class
T
{
2
static object
get_obj
() {
3
return new object
();
4
}
5
static int
Main
() {
6
object
o
=
get_obj
();
7
if
(
o
==
"string"
)
8
return
1
;
9
return
0
;
10
}
11
}