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: 08eb088af39e4c694d70ed830d70df104bb083ce (plain)
1
2
3
4
5
// cs0214: Pointer can only be used in unsafe context
// Line: 4
class X {
	void *a;
}