[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / errors / cs0027-4.cs
1 // CS0027: Keyword `this' is not available in the current context
2 // Line: 6
3
4 class Program
5 {
6         const object y = this;
7 }