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
Merge pull request #4202 from marek-safar/compression
[mono-project.git]
/
mcs
/
errors
/
cs0200.cs
blob
246006d0f0a5db3af740a48ce530955369b6dfd5
1
// CS0200: Property or indexer `X.P' cannot be assigned to (it is read-only)
2
// Line: 13
3
4
class
X
{
5
static int
P
{
6
get
{
7
return
1
;
8
}
9
}
10
11
static int
Main
()
12
{
13
P
=
10
;
14
return
1
;
15
}
16
}