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
[mono/tests] Fix out of tree build.
[mono-project.git]
/
mcs
/
tests
/
gtest-031-lib.cs
blob
50634094f84c91b98e587c4cbf5b4b8f7665c24b
1
// Compiler options: -t:library
2
3
public class
Foo
<
T
>
4
{
5
public void
Hello
(
T t
)
6
{ }
7
}
8
9
public class
Bar
<
T
,
U
> :
Foo
<
U
>
10
{
11
public void
Test
(
T t
,
U u
)
12
{ }
13
}