2007-04-17 Jonathan Chambers <joncham@gmail.com>
[mono.git] / mcs / errors / cs0168-3.cs
1 // cs0168-3.cs: The variable `y2' is declared but never used\r
2 // Line: 9\r
3 // Compiler options: -warn:3 -warnaserror\r
4 \r
5 class CompilerBugDemo\r
6 {\r
7         public static object Wrong()\r
8         {\r
9                 object y2;\r
10                 return null;\r
11         }\r
12 }