2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0266-2.cs
bloba5befbe14849e6a2a556c0c47cac3f8a759e271c
1 // CS0266: Cannot implicitly convert type `bool?' to `bool'. An explicit conversion exists (are you missing a cast?)
2 // Line: 9
4 class X
6 static void Main ()
8 bool? a = true;
9 int? b = a ? 3 : 4;