Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0283-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3d71aad4831f1d6008cb032542ecde4b9b1d86e3 (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;
}