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
2010-04-13 Sebastien Pouliot <sebastien@ximian.com>
[mono-project.git]
/
mcs
/
tests
/
gtest-148.cs
blob
be06afa96a2473a840f166dbed4575b9f755c3ac
1
using
System
;
2
3
static class
Test1
{
4
public class
IOp
<
T
>
{ }
5
static void
Foo
<
S
,
OP
>(
uint
v
)
where OP
:
IOp
<
S
>
{ }
6
};
7
8
static class
Test2
{
9
public class
IOp
<
T
>
{ }
10
static void
Foo
<
T
,
OP
>(
uint
v
)
where OP
:
IOp
<
T
>
{ }
11
};
12
13
class
X
14
{
15
static void
Main
()
16
{ }
17
}