Forgot this file
[mono.git] / mcs / errors / cs0196.cs
1 // cs0196.cs: pointers must be indexed by a single value
2 // line: 8
3 using System;
4 unsafe class ZZ {
5         static void Main () {
6                 int *p = null;
7
8                 if (p [10,4] == 4)
9                         return;
10         }
11 }