1 2 3 4 5 6 7 8 9 10
// CS1103: The extension method cannot be of type `int*' // Line: 7 // Compiler options: -unsafe static class S { unsafe static void Foo (this int* iptr) { } }