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

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

static class StaticClass {
}

class MainClass {
    public static void Method (StaticClass arg)
    {
    }
}