[bcl] Update BCL Linked Size
[mono-project.git] / mcs / errors / cs3006-2.cs
blob8ff3d1fa3da0f6bc748399a61a9b307170935106
1 // CS3006: Overloaded method `CLSClass.Test(out bool)' 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 abstract class CLSClass {
9 public void Test(bool a) {
12 public abstract void Test(out bool b);