Update dependencies from https://github.com/dotnet/arcade build 20190729.1 (#15881)
[mono-project.git] / mcs / tests / gtest-605.cs
blob082983d6053f87e10e76d003258b1f5e5f1cc3cd
1 using System;
3 public class NullableAnd
5 static object Foo (object l, object r)
7 return (Boolean?)l & (Boolean?)r;
10 public static int Main ()
12 var g = Foo (true, true);
13 Console.WriteLine (g);
14 if ((bool?) g != true)
15 return 1;
17 return 0;