(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0214-4.cs
blob54ed3ccc086f6a7180007719b606bbe2100681ec
1 // cs0214: Pointer can only be used in unsafe context
2 // Line: 8
3 // Compiler options: -unsafe
5 class X {
6 public void a ()
8 void *p;
11 static void Main () {}