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 #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs1057-3.cs
blob
3c5bbc79a8329dcaf3afb84177ecb4f0a0f19842
1
// CS1057: `S.P.set': Static classes cannot contain protected members
2
// Line: 6
3
4
static class
S
5
{
6
public static int
P
{
7
get
;
8
protected set
;
9
}
10
}