Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs3001-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 75d97473545ceeefefe1e9be1f1c192e483a26c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// cs3001-4.cs: Argument type 'out IError' is not CLS-compliant
// Line: 12

using System;
[assembly:CLSCompliant(true)]

[CLSCompliant(false)]
public interface IError{
}

public interface I {
        void Error(out IError arg);
}

public class c {
        public void Error (out IError arg) { arg = null; }
}