2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0841-2.cs
blob8cf05e8ee1968deaff2c713a3f546dec7069590b
1 // CS0841: A local variable `y' cannot be used before it is declared
2 // Line: 8
4 public class C
6 public static void Main ()
8 int x = y;
9 int y = 1;