w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs3006-1.cs
blob9e3740a9ccd6c2410ccda8dd6463bcf234ae6b10
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) {