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: ee0a06b3aeb8468377e934d9cb6c57b8a6584aa5 (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)
    {
    }
}