* Control.cs: fix the checks so that they work correctly for mdi
[mcs.git] / errors / cs3007.cs
blob1da12bd8f111a2df0cef05c2fb77c4daf3a331a7
1 // cs3007.cs: Overloaded method `CLSClass.CLSClass(int[][,,])' differing only by unnamed array types is not CLS-compliant
2 // Line: 11
4 using System;
5 [assembly: CLSCompliant(true)]
7 public class CLSClass {
8 public CLSClass(int[,,][] i) {
11 public CLSClass(bool[] b) {
14 static void Main() {}