[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / errors / cs0162-16.cs
1 // CS0162: Unreachable code detected
2 // Line: 10
3 // Compiler options: -warnaserror
4
5 using System;
6
7 class C
8 {
9         void Test ()
10         {
11                 return;
12                 const int a = 0;
13                 if (a > 0) {
14                         int x = a + 20;
15                         return;
16                 }
17         }
18 }