2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0165-14.cs
blobcdacc8d79e670d1857e46c62b97508c3715560f1
1 // CS0165: Use of unassigned local variable `y'
2 // Line: 12
4 class test
6 static void Main(string[] args)
9 int x = 8;
11 string y;
12 args[0] = y; // use of unassigned variable y