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

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

using System;

class E
{
   public void Method (int i)
   {
       throw new ArgumentNullException ();
       Console.WriteLine ("Once upon a time..");
   }
}