2004-07-17 Martin Baulig <martin@ximian.com>
[mono.git] / mcs / errors / cs0196.cs
1 // cs0196.cs: pointers must be indexed by a single value
2 // line: 10
3 // Compiler options: -unsafe
4 using System;
5
6 unsafe class ZZ {
7         static void Main () {
8                 int *p = null;
9
10                 if (p [10,4] == 4)
11                         return;
12         }
13 }