summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0019-32.cs
blob: 4bd8cb528450e1e80d9f1882628b74bf91c69199 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0019: Operator `&&' cannot be applied to operands of type `bool' and `null'
// Line: 14

class C
{
	public static void Main ()
	{
		bool b = true;
		b = b && null;
	}
}