New test.
[mono.git] / mcs / errors / cs3006-7.cs
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
3
4 using System;
5 [assembly: CLSCompliant(true)]
6
7 public class Base
8 {
9    public void Test(int a) {
10    }
11 }
12
13 public class CLSClass: Base {
14    public void Test(ref int b) {
15    }
16 }