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
Add Mono.Runtime::GetNativeStackTrace method to make the new backtracing facility...
[mono-project.git]
/
mcs
/
tests
/
gtest-519.cs
blob
a571012119fce0cefc5ac9a10d3586b60b2b43ee
1
class
G
<
T
>
2
{
3
}
4
5
interface
I
6
{
7
void
Foo
<
T
> ()
where T
:
G
<
T
>;
8
}
9
10
class
A
:
I
11
{
12
public void
Foo
<
U
> ()
where U
:
G
<
U
>
13
{
14
}
15
16
public static void
Main
()
17
{
18
}
19
}