repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-05-13 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0122-17.cs
blob
85eb251085791743a5ee618e73d199452f5c4afd
1
// cs0122-17.cs: `A.output' is inaccessible due to its protection level
2
// Line: 12
3
4
public class
A
{
5
private string
output
;
6
}
7
8
public class
B
:
A
{
9
public void
Test
() {
10
switch
(
"a"
) {
11
case
"1"
:
12
output
.
Replace
(
"a"
,
"b"
);
13
break
;
14
}
15
}
16
}