Merge all static runtime libs into libmono-static.
[mono.git] / mcs / tests / gtest-605.cs
1 using System;
2
3 public class NullableAnd
4 {
5         static object Foo (object l, object r)
6         {
7                 return (Boolean?)l & (Boolean?)r;
8         }
9
10         public static int Main ()
11         {
12                 var g = Foo (true, true);
13                 Console.WriteLine (g);
14                 if ((bool?) g != true)
15                         return 1;
16
17                 return 0;
18         }
19 }