A test for bug #374619 svn path=/trunk/mcs/; revision=99174
@@ -0,0 +1,12 @@
+public static class D
+{
+ static bool? debugging = null;
+ static int? extra = 0;
+
+ public static void Main ()
+ {
+ debugging |= true;
+ extra |= 55;
+ }
+}