(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs3006.cs
blobd4790cb5aa203e10043851a23b0d71b7ea5a68b3
1 // cs3006.cs: Overloaded method 'CLSClass.Test(ref int)' differing only in ref or out, or in array rank, is not CLS-compliant
2 // Line: 11
4 using System;
5 [assembly: CLSCompliant(true)]
7 public class CLSClass {
8 public void Test(int a) {
11 public void Test(ref int b) {