[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1547-10.cs
1 // CS1547: Keyword `void' cannot be used in this context
2 // Line: 10
3 class Foo<T>
4 { }
5
6 class X
7 {
8         static void Main ()
9         {
10                 Foo<void> foo;
11         }
12 }