summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0214-12.cs
blob: ef495c13da6edc85420d26165ebae0b7e5fca3b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS0214: Pointers and fixed size buffers may only be used in an unsafe context
// Line: 13
// Compiler options: -unsafe

class C
{
	public static unsafe void Write (params int*[] args)
	{
	}
	
	public static void Main ()
	{
		Write ();
	}
}