w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs3006-8.cs
blob8c929613b6321f7bb953d74c3556550578904847
1 // CS3006: Overloaded method `Base<T>.Test(ref int)' differing only in ref or out, or in array rank, is not CLS-compliant
2 // Line: 13
3 // Compiler options: -warnaserror -warn:1
5 using System;
6 [assembly: CLSCompliant (true)]
8 public class Base<T>
10 public void Test (int a)
13 public void Test (ref int b)
18 public class CLSClass : Base<int>
20 public void Test ()