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

cs0722-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0b17f530ffa91f14aaf47fe60e4806b489154164 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0722.cs: 'StaticClass': static types cannot be used as return types
// Line: 8

static class StaticClass {
}

class MainClass {
    public static StaticClass Prop {
        get {
            return null;
        }
    }
}