2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0162.cs
blob72880f72beaede6efbd502aec7d3b186d0b08707
1 // CS0162: Unreachable code detected
2 // Line: 12
3 // Compiler options: -warnaserror -warn:2
5 using System;
7 class E
9 public void Method<T> () where T : class
11 if (default (T) != null)
12 throw new ArgumentNullException ();