[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / errors / cs0721-2.cs
1 // CS0721: `C': static types cannot be used as parameters
2 // Line: 6
3
4
5 static class C
6 {
7         static void Foo (this C c)
8         {
9         }
10 }