Add glib to the list of packages with debugging symbols.
[mono.git] / mcs / errors / cs0120-11.cs
1 // CS0120: An object reference is required to access non-static member `Program.x'
2 // Line: 6
3
4 class Program {
5         int x;
6         const int y = x;
7 }