[xbuild] Remove ErrorTest.TestExecute1()
[mono.git] / mcs / errors / cs0242.cs
1 // CS0242: The operation in question is undefined on void pointers
2 // Line: 11
3 // Compiler options: -unsafe
4
5 using System;
6
7 unsafe class ZZ {
8         static void Main () {
9                 void *p = null;
10
11                 if (p [10] == 4)
12                         return;
13         }
14 }
15