2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0841.cs
blobba1f977a53d0c51dc83961473e7e6b77c13303e8
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 const int x = y;
9 const int y = 1;