2009-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git] / errors / cs0026-3.cs
blobb0ec7ea1c56964160a3b6c29dfcac5726c06ee0b
1 // CS0026: Keyword `this' is not valid in a static property, static method, or static field initializer
2 // Line: 7
4 class A : B
6 public A ()
7 : base (this)
12 class B
14 public B (B b)