linux-packaging-mono/mcs/tests/test-cls-18.cs

23 lines
266 B
C#
Raw Normal View History

// Compiler options: -warnaserror
using System;
[assembly: CLSCompliant (true)]
public class Base
{
public virtual void Test (int[] a)
{
}
}
public class CLSClass : Base
{
public override void Test (params int[] b)
{
}
public static void Main ()
{
}
}