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

cs0196.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 57dd9c2b7b15b63ff7ca5a0e5fdcbd3be4b18983 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0196.cs: pointers must be indexed by a single value
// line: 8
using System;
unsafe class ZZ {
	static void Main () {
		int *p = null;

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