2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs3007.cs
blob7694312eb953bf3933e1d2668c7782cac83ae963
1 // CS3007: Overloaded method `CLSClass.CLSClass(int[][,,])' differing only by unnamed array types is not CLS-compliant
2 // Line: 12
3 // Compiler options: -warnaserror -warn:1
5 using System;
6 [assembly: CLSCompliant(true)]
8 public class CLSClass {
9 public CLSClass(int[,,][] i) {
12 public CLSClass(bool[] b) {
15 static void Main() {}