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
/
cs0200-4.cs
blob
bf2cbff074173586fd823f2ebe529ce233f90525
1
// CS0200: Property or indexer `A.X' cannot be assigned to (it is read-only)
2
// Line: 13
3
4
public class
A
5
{
6
public int
X { get; }
7
}
8
9
public class
B
:
A
10
{
11
public
B
()
12
{
13
base
.
X
=
1
;
14
}
15
}