Merge pull request #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git] / mcs / errors / cs0162-16.cs
blob982cff5fc9f80de26d2a8752b63335b135980236
1 // CS0162: Unreachable code detected
2 // Line: 10
3 // Compiler options: -warnaserror
5 using System;
7 class C
9 void Test ()
11 return;
12 const int a = 0;
13 if (a > 0) {
14 int x = a + 20;
15 return;