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

cs0208-5.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 905d97c1ebcd5657fb7998a5698a6595f82f3514 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0208-5.cs: Cannot declare a pointer to a managed type ('X')
// Line: 8
// Compiler options: -unsafe

unsafe struct X {
	string a;
	static void Main () {
		X* y;
	}
}