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

test-cls-02.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3be78b28ec53205932c2036cf0d007751997990a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using System;
using System.Reflection;

[assembly: CLSCompliant (true)]

public class CLSClass {
        [CLSCompliant(false)]
        public CLSClass(ulong l) {}
        internal CLSClass(uint i) {}
            
        [CLSCompliant(false)]
        public ulong X_0 {
            set {}
            }
            
        [CLSCompliant(false)]
        protected ulong this[ulong i] {
            set {}
        }
        
        [CLSCompliant(false)]
        public ulong X_1;
            
        internal ulong X_2;

        public static void Main() {
	}
}
public class InnerTypeClasss {
    public struct Struct {
    }
    
    public Struct Method () {
        return new Struct ();
    }
}