Merge all static runtime libs into libmono-static.
[mono.git] / mcs / errors / cs0168-3.cs
1 // CS0168: The variable `y2' is declared but never used
2 // Line: 9
3 // Compiler options: -warn:3 -warnaserror
4
5 class CompilerBugDemo
6 {
7         public static object Wrong()
8         {
9                 object y2;
10                 return null;
11         }
12 }