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

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

using System;

[assembly:CLSCompliant(true)]

namespace aa {
    public class I1 {
    }
}

namespace bb {
    public interface i1 {
    }
}

public class CLSClass {
        public static void Main() {}
}