cleol
[mcs.git] / errors / cs0193-2.cs
blobdf36fee941e48aecb9fab183c4635634ff5fd4ec
1 // CS0193: The * or -> operator must be applied to a pointer
2 // Line: 10
3 // Compiler options: -unsafe
5 class C
7 unsafe static void Foo (object o)
9 bool x = false;
10 if (o is bool ? *x : null) {