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:
authorGeoff Norton <grompf@sublimeintervention.com>2004-09-21 21:43:05 +0400
committerGeoff Norton <grompf@sublimeintervention.com>2004-09-21 21:43:05 +0400
commit9f4822fa6c93bf5f8cfe0dfb02c3bf9619dc1038 (patch)
treec131eab94425b8b7f86f0933f77da0e6eaa214be /mcs/tests/test-296.cs
parentb0c0dddcc03b673809a6cecfeb0d3f4218f4955c (diff)
Adding test case for bug #63841
svn path=/trunk/mcs/; revision=34182
Diffstat (limited to 'mcs/tests/test-296.cs')
-rw-r--r--mcs/tests/test-296.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/mcs/tests/test-296.cs b/mcs/tests/test-296.cs
new file mode 100644
index 00000000000..b5954434b18
--- /dev/null
+++ b/mcs/tests/test-296.cs
@@ -0,0 +1,14 @@
+using System;
+
+public class GetElementTypeTest {
+ static int Main (string[] args) {
+ GetElementTypeTest me = new GetElementTypeTest ();
+ Type t = me.GetType ();
+ Type elementt = t.GetElementType ();
+
+ if (elementt != null)
+ return 1;
+ return 0;
+ }
+}
+