1 // CS3001: Argument type `out IError' is not CLS-compliant
3 // Compiler options: -warnaserror -warn:1
6 [assembly
:CLSCompliant(true)]
9 public interface IError
{
13 void Error(out IError arg
);
17 public void Error (out IError arg
) { arg = null; }