2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs3006-1.cs
blob3d20456e7571bc9c992cca9cbf690434d70155e7
1 // CS3006: Overloaded method `CLSClass.Test(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 void Test(int[,,] b) {
12 public void Test(int[,] b) {