2004-07-17 Martin Baulig <martin@ximian.com>
[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 }