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: c9dfc18a2ffe0a33705cc952b86b62e288f01410 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs0162.cs: Unreachable code detected
// Line: 12
// Compiler options: -t:library

using System;

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