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-variance-18.cs
blob
3691c59b6a76fb68d215ab86bc206b5bd805bfd3
1
interface
IFoo
<
out
T
>
2
{
3
}
4
5
struct
S
:
IFoo
<
string
>
6
{
7
}
8
9
public class
Test
10
{
11
public static int
Main
()
12
{
13
S s
=
new
S
();
14
IFoo
<
object
>
o
=
s
;
15
return
0
;
16
}
17
}