summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1103.cs
blob: c4fd2c90fdceb287c5ca6cef595b586969840aea (plain)
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)
	{
	}
}