System.Drawing: added email to icon and test file headers
[mono.git] / mcs / errors / cs0172-2.cs
1 // CS0172: Type of conditional expression cannot be determined as `byte' and `int' convert implicitly to each other
2 // Line: 9
3
4 public class Tester
5 {
6         public static void Main ()
7         {
8                 byte x = 4;
9                 var a = true ? x : 0;
10         }
11 }