summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0162.cs
blob: 6315f43d248fbb81ff551bb8a0da5a698c70170c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0162: 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..");
   }
}