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

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

using System;
[assembly:CLSCompliant(true)]

public class CLSClass {
        private ulong Valid() {
                return 1;
        }
    
        protected ulong Foo() {
                return 1;
        }
}