2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0266-3.cs
blob7e979e2cc81a2dcde7de385f00ec431309802c27
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 bool b = a & a;