[mini] Fix test compiling when running !MOBILE
[mono.git] / mcs / errors / cs1103-2.cs
1 // CS1103: The extension method cannot be of type `dynamic'
2 // Line: 6
3
4 static class S
5 {
6         static void Foo (this dynamic d)
7         {
8         }
9 }