Replace SIZEOF_REGISTER with sizeof(mgreg_t) for consistency with sizeof(gpointer)
[mono.git] / mcs / errors / gcs0266-3.cs
1 // CS0266: Cannot implicitly convert type `bool?' to `bool'. An explicit conversion exists (are you missing a cast?)
2 // Line: 9
3
4 class X
5 {
6         static void Main ()
7         {
8                 bool? a = true;
9                 bool b = a & a;
10         }
11 }