New test.
[mono.git] / mcs / errors / cs1536.cs
1 // CS1536: Invalid parameter type 'void'
2 // Line: 7
3 using System;
4
5 class X
6 {
7         void Test (void a)
8         { }
9
10         static void Main ()
11         {
12         }
13 }