(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0242.cs
blob494e3b7d0a0c248705897096c04e9a97b0a4205b
1 // cs0242: operation is not defined for void *
2 // Line: 10
3 // Compiler options: -unsafe
4 using System;
6 unsafe class ZZ {
7 static void Main () {
8 void *p = null;
10 if (p [10] == 4)
11 return;