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

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

static class StaticClass {
}

class MainClass {
    public static StaticClass Method ()
    {
        return null;
    }
}