Merge all static runtime libs into libmono-static.
[mono.git] / mcs / errors / cs0162-12.cs
1 // CS0162: Unreachable code detected
2 // Line: 11
3 // Compiler options: -warnaserror -warn:2
4
5 public class Test
6 {
7         public static void Main ()
8         {
9                 return;
10
11                 Test testStr;
12                 return;
13         }
14 }