summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0283-3.cs
blob: e34be3e4495353fc9db7a0b7129d259e2eddb57e (plain)
1
2
3
4
5
6
7
8
// CS0283: The type `int*' cannot be declared const
// Line: 10
// Compiler options: -unsafe

unsafe class Test
{
	const int* o = null;
}