2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0172-2.cs
blob71fbcb5bdbc816ff23c4412276a8fde38c2c301f
1 // CS0172: Type of conditional expression cannot be determined as `byte' and `int' convert implicitly to each other
2 // Line: 9
4 public class Tester
6 public static void Main ()
8 byte x = 4;
9 var a = true ? x : 0;