2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0019-3.cs
bloba1b8dbdec88f4d36afd5a49a853bbda56011f675
1 // CS0019: Operator `&&' cannot be applied to operands of type `bool?' and `bool?'
2 // Line: 10
3 using System;
5 class X
7 static void Main ()
9 bool? a = false, b = false;
10 Console.WriteLine (a && b);