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-02-15 Jonathan Chambers <joncham@gmail.com>
[mcs.git]
/
errors
/
cs0026-3.cs
blob
b0ec7ea1c56964160a3b6c29dfcac5726c06ee0b
1
// CS0026: Keyword `this' is not valid in a static property, static method, or static field initializer
2
// Line: 7
3
4
class
A
:
B
5
{
6
public
A
()
7
:
base
(
this
)
8
{
9
}
10
}
11
12
class
B
13
{
14
public
B
(
B b
)
15
{
16
}
17
}