[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0173-2.cs
blob5e407978a7b2f4c9c9a8154bfab389a1cd5c21ef
1 // CS0173: Type of conditional expression cannot be determined because there is no implicit conversion between `int' and `null'
2 // Line: 29
4 public class MainClass {
5 public static void Main() {
6 bool result = false;
7 System.Console.WriteLine (result ? 1 : null);