Updated with review feedback.
[mono.git] / mcs / errors / cs0721.cs
1 // CS0721: `StaticClass': static types cannot be used as parameters
2 // Line: 8
3
4 static class StaticClass {
5 }
6
7 class MainClass {
8     public static void Method (StaticClass arg)
9     {
10     }
11 }