Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2004-01-17 22:47:22 +0300
committerMiguel de Icaza <miguel@gnome.org>2004-01-17 22:47:22 +0300
commit15d139098a87e92cd4c68050869eb6fba320c7d1 (patch)
treec82f514c6f6b44f5ae3420189e11dcb52411707f /mcs/tests/test-223.cs
parentabb47514694cd3e0d869d926ea0ac70c317422dd (diff)
Improve test to cover 52853
svn path=/trunk/mcs/; revision=22210
Diffstat (limited to 'mcs/tests/test-223.cs')
-rw-r--r--mcs/tests/test-223.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/mcs/tests/test-223.cs b/mcs/tests/test-223.cs
index e2a0814206a..e9d424d40a4 100644
--- a/mcs/tests/test-223.cs
+++ b/mcs/tests/test-223.cs
@@ -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
+}