2002-10-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / errors / cs0236.cs
1 //cs0236: A field initializer cannot reference the non-static field, method or property `X.Foo'.
2
3 class X
4 {
5         int Foo {
6                 get {
7                         return 9;
8                 }
9         }
10
11         long Bar = Foo;
12
13         static void Main () {
14         }
15 }