2005-06-29 Jonathan Chambers <jonathan.chambers@ansys.com>
[mcs.git] / errors / cs3001-4.cs
blobf8d7625ac068794f7c2cc01e4c1dd5d2fb5e077b
1 // cs3001-4.cs: Argument type `out IError' is not CLS-compliant
2 // Line: 12
4 using System;
5 [assembly:CLSCompliant(true)]
7 [CLSCompliant(false)]
8 public interface IError{
11 public interface I {
12 void Error(out IError arg);
15 public class c {
16 public void Error (out IError arg) { arg = null; }