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