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

test-cls-03.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 248c98f6b6b8c5928c1b300716d59e817339a9d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Compiler options: -warnaserror

using System;
[assembly:CLSCompliant(true)]

public interface I1 {
}

public class CLSClass {
        protected internal I1 Foo() {
                return null;
        }
       
        public static void Main() {}
}