New test.
[mono.git] / mcs / errors / cs3001-4.cs
1 // cs3001-4.cs: Argument type `out IError' is not CLS-compliant
2 // Line: 12
3
4 using System;
5 [assembly:CLSCompliant(true)]
6
7 [CLSCompliant(false)]
8 public interface IError{
9 }
10
11 public interface I {
12         void Error(out IError arg);
13 }
14
15 public class c {
16         public void Error (out IError arg) { arg = null; }
17 }