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:
authorMarek Safar <marek.safar@gmail.com>2004-09-04 13:51:38 +0400
committerMarek Safar <marek.safar@gmail.com>2004-09-04 13:51:38 +0400
commitcef7d1ca165580a9b6fc50a05d6fc47bb9dd797b (patch)
treeeb768fcc16a9c3c2b2cec9711c47395a0f7af0e0 /mcs/tests/test-289.cs
parentd87e52af7d00cccb4d0e73eac3a3f14901ed493a (diff)
2004-09-04 Marek Safar <marek.safar@seznam.cz>
* test-289.cs: New test for #63631. svn path=/trunk/mcs/; revision=33335
Diffstat (limited to 'mcs/tests/test-289.cs')
-rw-r--r--mcs/tests/test-289.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/mcs/tests/test-289.cs b/mcs/tests/test-289.cs
new file mode 100644
index 00000000000..6786c0e89a8
--- /dev/null
+++ b/mcs/tests/test-289.cs
@@ -0,0 +1,14 @@
+using System;
+
+public class Test
+{
+ public static void Main () {}
+
+ public string Value { set { } }
+ public void set_Value () { return; }
+
+ void set_Item (int a, int b, bool c) {}
+ int this[int i] { set {} }
+ bool this [bool i] { get { return false; } }
+
+}