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: a765f9740517bf218f8a8bb8a30b61ab6233f59b (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0721: `StaticClass': static types cannot be used as parameters
// Line: 8

static class StaticClass {
}

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