Display error messages instead of stack traces.
[mcs.git] / errors / cs3006-7.cs
blob2f1a67f7b8bd1dbaf1da4d4b4b104c39f9ff8f7a
1 // cs3006-7.cs: Overloaded method `CLSClass.Test(ref int)' differing only in ref or out, or in array rank, is not CLS-compliant
2 // Line: 14
4 using System;
5 [assembly: CLSCompliant(true)]
7 public class Base
9 public void Test(int a) {
13 public class CLSClass: Base {
14 public void Test(ref int b) {