blob: cbe891cb14ac2034d2dc940815d950be1e41cdcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// CS0007: Keyword `this' is not available in the current context
// Line: 14
class B
{
public B (object o)
{
}
}
class C : B
{
public C ()
: base (this)
{
}
}
|