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
/
errors
/
cs8141-2.cs
blob
42c80cea0cdbee6b03249ef016ec4db1a18ccacd
1
// CS8141:
2
// Line: 11
3
4
public interface
I
<
T
>
5
{
6
int this
[
T arg
]
{ get; set; }
7
}
8
9
public class
C
:
I
<(
int
a
,
int
b
)>
10
{
11
public int this
[(
int
c
,
int
d
)
arg
] {
12
get
{
13
return
1
;
14
}
15
set
{
16
17
}
18
}
19
}