summaryrefslogtreecommitdiff
path: root/mcs/errors/cs4005.cs
blob: 9570f81aa93f39ca2a5b90f9c2bde2ac952321eb (plain)
1
2
3
4
5
6
7
8
9
10
// CS4005: Async methods cannot have unsafe parameters
// Line: 7
// Compiler options: -unsafe

class C
{
	public unsafe async void Test (int* arg)
	{
	}
}