[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs0429.cs
blobae6c158c47fec80993b770816f0fbe3e66c0308b
1 // CS0429: Unreachable expression code detected
2 // Line: 9
3 // Compiler options: -warn:4 -warnaserror
5 class Main
7 public void Method (int i)
9 if (false && i > 10)
10 return;