[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1031-2.cs
1 // CS1031: Type expected
2 // Line: 8
3
4 using System;
5
6 class M
7 {
8         public static void Main ()
9         {
10                 Type t = typeof (this);
11         }
12 }
13