[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / errors / cs0841.cs
1 // CS0841: A local variable `y' cannot be used before it is declared
2 // Line: 8
3
4 public class C
5 {
6         public static void Main ()
7         {
8             const int x = y;
9             const int y = 1;
10         }
11 }