"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs0193.cs
blob3eae90ffd6ebbea6a10510e061f7986582f362ec
1 // CS0193: The * or -> operator must be applied to a pointer
2 // Line: 9
3 // Compiler options: -unsafe
5 unsafe class X {
6 static void Main ()
8 int a = 0;
9 if (*a == 0)
10 return;