Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0429.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a1be2d9b2cfc8290fd4c43f603729129e2aa0ee0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0429.cs: Unreachable expression code detected
// Line: 9
// Compiler options: -warn:4 -warnaserror

class Main
{
   public void Method (int i)
   {
       if (false && i > 10)
	   return;
   }
}