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