Merge pull request #5693 from lateralusX/lateralusX/disable-stack-overflow-win-x64
[mono.git] / mcs / errors / cs0027-3.cs
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