Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs0214.cs
1 // CS0214: Pointers and fixed size buffers may only be used in an unsafe context
2 // Line: 6
3 // Compiler options: -unsafe
4
5 class X {
6         void *a;
7 }