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
add comment
[mcs.git]
/
tests
/
gtest-432.cs
blob
66a526dfc204dd95021e7c2e25f8b97d3f01d436
1
namespace
Test
2
{
3
public class
Bar
<
T
,
U
>
4
{
5
public void
DoSomething
<
V
> ()
where V
:
U
6
{
7
}
8
}
9
10
public class
Baz
11
{
12
public void
GetInTroubleHere
()
13
{
14
var
bar
=
new
Bar
<
string
,
string
> ();
15
bar
.
DoSomething
<
string
> ();
16
}
17
18
public static void
Main
()
19
{
20
}
21
}
22
}
23