In .:
[mono.git] / mcs / errors / gcs0721.cs
1 // CS0721: `C': static types cannot be used as parameters
2 // Line: 6
3 // Compiler options: -langversion:linq
4
5 static class C
6 {
7         static void Foo (this C c)
8         {
9         }
10 }