[utils] Add check for ANDROID_UNIFIED_HEADERS to mono-compiler.h (#5742)
[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 }