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 #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs1511.cs
blob
b19ebf72d7077c5193a9991d9f253e9f40036667
1
// CS1511: 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
}