[runtime] Coverage profiler fixes (#5698)
[mono.git] / mcs / errors / cs0162-10.cs
1 // CS0162: Unreachable code detected
2 // Line: 11
3 // Compiler options: -warnaserror -warn:2
4
5 class Error
6 {
7         void Test ()
8         {
9                 switch (10)
10                 {
11                         case 9:
12                                 break;
13                 }
14         }
15
16 }