2010-03-17 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mcs / errors / cs1536.cs
1 // CS1536: Invalid parameter type `void'
2 // Line: 8
3
4 using System;
5
6 class X
7 {
8         void Test (void a)
9         { }
10 }