[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0193-2.cs
1 // CS0193: The * or -> operator must be applied to a pointer
2 // Line: 10
3 // Compiler options: -unsafe
4
5 class C
6 {
7         unsafe static void Foo (object o)
8         {
9                 bool x = false;
10                 if (o is bool ? *x : null) {
11                 }
12         }
13 }