Bump API snapshot submodule
[mono.git] / mcs / errors / cs0236-4.cs
1 // CS0236: A field initializer cannot reference the nonstatic field, method, or property `C.stuff'
2 // Line: 6
3
4 class C
5 {
6         object stuff = stuff;
7         
8         public C (object stuff)
9         {
10         }
11 }