2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0019-32.cs
blob4bd8cb528450e1e80d9f1882628b74bf91c69199
1 // CS0019: Operator `&&' cannot be applied to operands of type `bool' and `null'
2 // Line: 14
4 class C
6 public static void Main ()
8 bool b = true;
9 b = b && null;