2007-10-17 Geoff Norton <gnorton@novell.com>
[mono.git] / mcs / errors / gcs1103.cs
1 // CS1103: The type of extension method cannot be `int*'
2 // Line: 7
3 // Compiler options: -unsafe -langversion:linq
4
5 static class S
6 {
7         unsafe static void Foo (this int* iptr)
8         {
9         }
10 }