Remove code moved to shared partition
[mono-project.git] / mcs / errors / cs3006-6.cs
blob6912633fe2d7464c36a69bcdf2c87a22051b83df
1 // CS3006: Overloaded method `CLSClass.CLSClass(int[,])' differing only in ref or out, or in array rank, 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[,,] b) {
12 public CLSClass(int[,] b) {