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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0154-3.cs
blob
855be8181745ff6fa28c9be6f7f20ee8ab92b446
1
// CS0154: The property or indexer `Test.this[bool]' cannot be used in this context because it lacks the `get' accessor
2
// Line: 13
3
4
class
Test
5
{
6
public int this
[
bool
b
]
{ set {}
}
7
}
8
9
class
C
10
{
11
public static void
Main
()
12
{
13
int
i
=
new
Test
()[
false
];
14
}
15
}