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: 8bb9ab1b64bb4c236ba1fc3e62c989d26ff3a566 (plain)
1
2
3
4
5
6
7
// cs0214.cs: Pointers and fixed size buffers may only be used in an unsafe context
// Line: 6
// Compiler options: -unsafe

class X {
	void *a;
}