[loader] LoadFrom of problematic images should reprobe
[mono-project.git] / mcs / errors / cs0266-20.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;