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
update
[mcs.git]
/
tests
/
gtest-248.cs
blob
4f9389f565d39db7ffb8e5aab261c7867da93a11
1
using
System
;
2
3
public class
Foo
<
T
>
4
{ }
5
6
class
X
7
{
8
static bool
Test
(
object
o
)
9
{
10
return
o
is
Foo
<
int
> ?
true
:
false
;
11
}
12
13
static void
Main
()
14
{ }
15
}