[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs0162-15.cs
blob02459c9052bf80bcf340c8bf7551ca16880cba83
1 // CS0162: Unreachable code detected
2 // Line: 10
3 // Compiler options: -warnaserror
5 class C
7 void Test (int a)
9 return;
10 if (a > 0) {
11 int x = a + 20;
12 return;