[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs0019-11.cs
blobf6027336d5cdb7ba6b8ac66a6696a10ef414ee85
1 // CS0019: Operator `&&' cannot be applied to operands of type `null' and `null'
2 // Line : 8
4 public class C
6 public static void Main()
8 bool l = (null && null);