* Control.cs: fix the checks so that they work correctly for mdi
[mcs.git] / errors / cs3006.cs
bloba148a249ead79c15f3649ec01fcdeb670d830710
1 // cs3006.cs: Overloaded method `CLSClass.Test(int)' differing only in ref or out, or in array rank, is not CLS-compliant
2 // Line: 11
4 using System;
5 [assembly: CLSCompliant(true)]
7 public class CLSClass {
8 public void Test(int a) {
11 public void Test(ref int b) {