[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0162-14.cs
1 // CS0162: Unreachable code detected
2 // Line: 12
3 // Compiler options: -warnaserror -warn:2
4
5 using System;
6
7 class E
8 {
9    public void Method<T> () where T : class
10    {
11       if (default (T) != null)
12          throw new ArgumentNullException ();
13    }
14 }