- Fixed copyright
[mono.git] / mcs / errors / cs3006-5.cs
1 // cs3006.cs: Overloaded method 'CLSInterface.Test(out bool)' differing only in ref or out, or in array rank, is not CLS-compliant
2 // Line: 9
3
4 using System;
5 [assembly: CLSCompliant(true)]
6
7 public interface CLSInterface {
8         void Test(bool a);
9         void Test(out bool b);
10 }