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
2009-03-11 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
gtest-098-lib.cs
blob
98b5d06ad6a2e67d79248a6937183948166c6985
1
// Compiler options: -t:library
2
3
public interface
IFoo
4
{
5
void
Test
<
T
> ();
6
7
void
Test
<
U
,
V
> ();
8
}
9
10
public interface
IBar
<
T
>
11
{
12
void
Test
();
13
}
14
15
public interface
IBar
<
U
,
V
>
16
{
17
void
Test
();
18
}