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-07-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0026-2.cs
blob
450ed8a2152b3b5f37e8142a4d55b9a54bdd005b
1
// cs0026-2.cs: 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
}