Bump API snapshot submodule
[mono.git] / mcs / errors / cs0841-2.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             int x = y;
9             int y = 1;
10         }
11 }