2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0168-3.cs
blobab110d5d4837dcb6cdd7dcd7b979a0838c49af1c
1 // cs0168-3.cs: The variable `y2' is declared but never used
2 // Line: 9
3 // Compiler options: -warn:3 -warnaserror
5 class CompilerBugDemo
7 public static object Wrong()
9 object y2;
10 return null;