cleol
[mcs.git] / errors / cs3006.cs
blob6dedb437a5c9e8fe8753e2866e44662babdc3f5e
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 a) {
12 public void Test(ref int b) {