resync
[mcs.git] / errors / cs3006-5.cs
blobb632d5eceb1bce94877b35d5a920c12c2a1cc2d6
1 // cs3006-5.cs: Overloaded method `CLSInterface.Test(bool)' 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(bool a);
9 void Test(out bool b);