// cs0193.cs: * or -> operator can only be applied to pointer types. // Line: 9 // Compiler options: -unsafe unsafe class X { static void Main () { int a = 0; if (*a == 0) return 1; return 0; } }