Fix #77006.
[mono.git] / mcs / tests / test-223.cs
index e2a0814206a69680810b3adf4b1c11109fb63a42..e9d424d40a464334680cbd5aab6429676d9ff487 100644 (file)
@@ -19,7 +19,13 @@ class T {
                
                if (((int) vt2) != 1)
                        return 3;
+
+               //
+               // Test that we can assign null to a valueType
+               //
+
+               System.ValueType vt = null;
                
                return 0;
        }
-}
\ No newline at end of file
+}