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
2010-03-02 Rodrigo Kumpera <rkumpera@novell.com>
[mcs.git]
/
errors
/
cs1512.cs
blob
a0e26d8d6ceb6a615c488a931618c486001168ac
1
// cs1512.cs: Keyword `base' is not available in the current context
2
// Line: 11
3
4
class
Base
5
{
6
private string
B
()
{ return "a"; }
7
}
8
9
class
E
10
{
11
private string
B
=
base
.
B
();
12
}