[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs7003-6.cs
1 // CS7003: Unbound generic name is not valid in this context
2 // Line: 8
3
4 class C
5 {
6     static void Main ()
7     {
8                 System.Action<>.Combine ();
9         }
10 }