2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0841-3.cs
blob2d0b97f2846f6987488f6260f9c59f2533f2d5e4
1 // CS0841: A local variable `y' cannot be used before it is declared
2 // Line: 8
4 class X
6 static void y () { }
7 static void Main () {
8 y ();
9 int y = 5;