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
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0027-3.cs
blob
cbe891cb14ac2034d2dc940815d950be1e41cdcb
1
// CS0007: Keyword `this' is not available in the current context
2
// Line: 14
3
4
class
B
5
{
6
public
B
(
object
o
)
7
{
8
}
9
}
10
11
class
C
:
B
12
{
13
public
C
()
14
:
base
(
this
)
15
{
16
}
17
}
18