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-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs1540-4.cs
blob
a74372b2bd7e09ac463b9ceb767df4230e2eab5d
1
// cs1540-4.cs: Cannot access protected member `A.n()' via a qualifier of type `A'. The qualifier must be of type `B' or derived from it
2
// Line: 14
3
4
class
A
5
{
6
protected void
n
()
{ }
7
}
8
9
class
B
:
A
10
{
11
public static void
Main
()
12
{
13
A b
=
new
A
();
14
b
.
n
();
15
}
16
}
17
18
19