[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0173-2.cs
1 // CS0173: Type of conditional expression cannot be determined because there is no implicit conversion between `int' and `null'
2 // Line: 29
3
4 public class MainClass {
5         public static void Main() {
6                 bool result = false;
7                 System.Console.WriteLine (result ? 1 : null);
8         }
9 }