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-62.cs')
-rwxr-xr-xmcs/tests/test-62.cs28
1 files changed, 0 insertions, 28 deletions
diff --git a/mcs/tests/test-62.cs b/mcs/tests/test-62.cs
deleted file mode 100755
index 550956009e0..00000000000
--- a/mcs/tests/test-62.cs
+++ /dev/null
@@ -1,28 +0,0 @@
-//
-// This test just makes sure that we can typecast to
-// array types, as this was introduced later into the
-// grammar.
-//
-
-class X {
-
- X [] GetX ()
- {
- return (X []) null;
- }
-
- int [] getInt ()
- {
- return (int []) null;
- }
-
- int [,,] getMoreInt ()
- {
- return (int [,,]) null;
- }
-
- static int Main ()
- {
- return 0;
- }
-}