11 lines
105 B
C#
Raw Normal View History

// CS1536: Invalid parameter type `void'
// Line: 8
using System;
class X
{
void Test (void a)
{ }
}