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
[interp] Fall back to old implementation when calling on proxy
[mono-project.git]
/
mcs
/
errors
/
cs0026-2.cs
blob
052e9bffadc27024cb5a9f932b10997a4ef79fb8
1
// CS0026: Keyword `this' is not valid in a static property, static method, or static field initializer
2
// Line: 4
3
class
X
{
4
static object
o
=
this
;
5
6
static int
Main
()
7
{
8
return
1
;
9
}
10
}