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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
tests
/
gtest-479.cs
blob
5ad555b9353b1efbcd7633b61f88e77130293c8f
1
using
System
;
2
3
interface
I
<
T
>
4
{
5
}
6
7
class
A
:
I
<
int
>
8
{
9
}
10
11
class
B
:
A
12
{
13
}
14
15
class
M
16
{
17
static void
Test
<
T
> (
I
<
T
>
f
)
18
{
19
}
20
21
public static void
Main
()
22
{
23
Test
(
new
A
());
24
Test
(
new
B
());
25
}
26
}