updating to the latest module.
[mono.git] / mcs / errors / cs0214.cs
1 // cs0214: Pointer can only be used in unsafe context
2 // Line: 6
3 // Compiler options: -unsafe
4
5 class X {
6         void *a;
7 }