3e587550904dbc20f1ee62e7b5202340fe65d636
[mono.git] / mcs / errors / cs0120-11.cs
1 // CS0120: `Program.x': An object reference is required for the nonstatic field, method or property
2 // Line: 6
3
4 class Program {
5         int x;
6         const int y = x;
7 }