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
[sdks] Fix README.md
[mono-project.git]
/
mcs
/
tests
/
gtest-561.cs
blob
5e601761df7fc55c822ae8c53965781e462ac03e
1
// Compiler options: -r:gtest-561-lib.dll
2
3
using
System
.
Collections
.
Generic
;
4
5
class
C
:
A
,
I
6
{
7
public void
Foo
<
T
> (
List
<
T
>
arg
)
where T
:
A
8
{
9
}
10
11
public static void
Main
()
12
{
13
new
C
().
Foo
(
new
List
<
A
> ());
14
}
15
}