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

cs0242.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c775f17342ea2ab51993851c9b750e50eebc7ab3 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0242: operation is not defined for void *
// Line: 8
using System;
unsafe class ZZ {
	static void Main () {
		void *p = null;

		if (p [10] == 4)
			return;
	}
}