Merge all static runtime libs into libmono-static.
[mono.git] / mcs / errors / cs1103.cs
1 // CS1103: The extension method cannot be of type `int*'
2 // Line: 7
3 // Compiler options: -unsafe
4
5 static class S
6 {
7         unsafe static void Foo (this int* iptr)
8         {
9         }
10 }