[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0246-34.cs
1 // CS0246: The type or namespace name `wrong' could not be found. Are you missing an assembly reference?
2 // Line: 15
3
4 using System;
5
6 class X
7 {
8         static void Foo<T> () where T : class
9         {
10         }
11
12         public static void Main ()
13         {
14                 Action a = () => {
15                         Foo<wrong> ();
16                 };
17         }
18 }