2004-09-04 Marek Safar <marek.safar@seznam.cz>
authorMarek Safar <marek.safar@gmail.com>
Sat, 4 Sep 2004 09:51:38 +0000 (09:51 -0000)
committerMarek Safar <marek.safar@gmail.com>
Sat, 4 Sep 2004 09:51:38 +0000 (09:51 -0000)
* test-289.cs: New test for #63631.

svn path=/trunk/mcs/; revision=33335

mcs/tests/ChangeLog
mcs/tests/Makefile
mcs/tests/test-289.cs [new file with mode: 0644]

index 6b3c837374931a071075233886bd0a57ebb49ec1..f74bfe7ef60da92e936faddbb2850754686f46cd 100755 (executable)
@@ -1,3 +1,7 @@
+2004-09-04  Marek Safar <marek.safar@seznam.cz>
+
+       * test-289.cs: New test for #63631.
+
 2004-09-03  Raja R Harinath  <rharinath@novell.com>
 
        * Makefile (TEST_SOURCES): Add 'mtest-1-dll' and 'mtest-1-exe'.
index d6e04e8e48da10de32755de6fa2c00b3926051d0..2099723b2f279ad891039f4ab3f92bc960b04dba 100644 (file)
@@ -44,7 +44,7 @@ TEST_SOURCES = \
        test-251 test-252 test-253 test-254 test-255 test-256 test-257 test-258 test-259 test-260 \
        test-261 test-262 test-263 test-264 test-265 test-266 test-267 test-268 test-269 test-270 \
        test-271 test-272 test-273 test-274 test-275 test-276 test-277 test-278 test-279 test-280 \
-       test-281 test-282 test-283 test-284 test-285 test-286 test-287 test-288 \
+       test-281 test-282 test-283 test-284 test-285 test-286 test-287 test-288 test-289 \
        cls-test-0 cls-test-1 cls-test-2 cls-test-3 cls-test-5 cls-test-6 cls-test-7 cls-test-10  \
        cls-test-11 cls-test-14 cls-test-15 cls-test-16 \
        mtest-1-dll mtest-1-exe
diff --git a/mcs/tests/test-289.cs b/mcs/tests/test-289.cs
new file mode 100644 (file)
index 0000000..6786c0e
--- /dev/null
@@ -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; } }
+       
+}