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:
Diffstat (limited to 'mcs/tests/test-296.cs')
-rw-r--r--mcs/tests/test-296.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/mcs/tests/test-296.cs b/mcs/tests/test-296.cs
deleted file mode 100644
index b5954434b18..00000000000
--- a/mcs/tests/test-296.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-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;
- }
-}
-