* Control.cs: fix the checks so that they work correctly for mdi
[mcs.git] / errors / cs3009.cs
blob3aeb60b04bac0e24658f0b9243c54da04b6cd7d8
1 // cs3009.cs: `CLSClass': base type `BaseClass' is not CLS-compliant
2 // Line: 11
4 using System;
5 [assembly:CLSCompliant (true)]
7 [CLSCompliant (false)]
8 public class BaseClass {
11 public class CLSClass: BaseClass {