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
/
cs0122-9.cs
blob
4a51db38df3a73d39dc985393463eb152903679d
1
// CS0122: `X.a.get' is inaccessible due to its protection level
2
// Line: 16
3
4
public class
X
{
5
private int
a
{
6
get
{
7
return
1
;
8
}
9
}
10
}
11
12
internal class
Y
:
X
13
{
14
int
D
(
X x
)
15
{
16
if
(
x
.
a
==
2
)
17
return
0
;
18
return
0
;
19
}
20
}