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

cs0214.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c8bbad1905df903295514157409c78898143de5d (plain)
1
2
3
4
5
6
7
// cs0214: Pointer can only be used in unsafe context
// Line: 6
// Compiler options: -unsafe

class X {
	void *a;
}