Updated with review feedback.
[mono.git] / mcs / tests / test-cls-18.cs
1 // Compiler options: -warnaserror
2
3 using System;
4 [assembly: CLSCompliant (true)]
5
6 public class Base
7 {
8         public virtual void Test (int[] a)
9         {
10         }
11 }
12
13 public class CLSClass : Base
14 {
15         public override void Test (params int[] b)
16         {
17         }
18         
19         public static void Main ()
20         {
21         }
22 }