* Control.cs: fix the checks so that they work correctly for mdi
[mcs.git] / errors / cs3006-2.cs
blobef1d90e2a6c665accb252d464e1de83e0766be1c
1 // cs3006-2.cs: Overloaded method `CLSClass.Test(bool)' 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 abstract class CLSClass {
8 public void Test(bool a) {
11 public abstract void Test(out bool b);