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 'mono/tests/array3.cs')
-rw-r--r--mono/tests/array3.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/mono/tests/array3.cs b/mono/tests/array3.cs
new file mode 100644
index 00000000000..ce31de2e9fc
--- /dev/null
+++ b/mono/tests/array3.cs
@@ -0,0 +1,19 @@
+
+
+using System;
+
+
+public class Test {
+
+
+ public static int Main () {
+ object[] array = new object[10];
+
+ if (array.GetType ().IsPublic)
+ return 0;
+
+ return 1;
+ }
+
+}
+