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-09-02 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1511.cs
blob
804327858bb56e1e21f3da1a11691d980f0379a1
1
// cs1511.cs: Keyword `base' is not available in a static method
2
// Line:
3
4
class
Y
{
5
public int
a
;
6
}
7
8
class
X
:
Y
{
9
10
static void
Main
()
11
{
12
base
.
a
=
1
;
13
}
14
}