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

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

using System;
[assembly:CLSCompliant(true)]

[CLSCompliant(false)]
public interface I {}

public class C {}

public class CLSClass {
        public I Test1() { return null; } 
	public C Test2() { return null; }
}