[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / errors / cs1547-2.cs
1 // CS1547: Keyword `void' cannot be used in this context
2 // Line: 7
3 using System;
4
5 class X
6 {
7         static void Main ()
8         {
9                 void a;
10         }
11 }