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-112.cs')
-rwxr-xr-xmcs/tests/test-112.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/mcs/tests/test-112.cs b/mcs/tests/test-112.cs
deleted file mode 100755
index c1c28547991..00000000000
--- a/mcs/tests/test-112.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-//
-// This tests the use of an array indexer on value exprclasses
-// and not only variables
-//
-class X {
- static int [] g ()
- {
- int [] x = new int [5];
- x [1] = 10;
- return x;
- }
-
- static int Main ()
- {
- if (g () [1] == 10)
- return 0;
- return 1;
- }
-}