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
[Wasm] Fix memory override in mono_wasm_add_assembly
[mono-project.git]
/
mcs
/
tests
/
test-774.cs
blob
e8e88854b4043b4a947e9d001f6236c9221d8ab6
1
interface
I
2
{
3
int this
[
int
i
]
{ get; set; }
4
}
5
6
class
C
:
I
7
{
8
int
I
.
this
[
int
i
]
9
{
10
get
{ return i; }
11
set
{ }
12
}
13
14
public int this
[
int
i
]
15
{
16
get
{ return i; }
17
private set
{ }
18
}
19
20
public static void
Main
()
21
{
22
}
23
}
24