2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0429.cs
bloba1be2d9b2cfc8290fd4c43f603729129e2aa0ee0
1 // cs0429.cs: 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;