blob: a1b8dbdec88f4d36afd5a49a853bbda56011f675 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS0019: Operator `&&' cannot be applied to operands of type `bool?' and `bool?'
// Line: 10
using System;
class X
{
static void Main ()
{
bool? a = false, b = false;
Console.WriteLine (a && b);
}
}
|