Author: marek
Date: 2005-04-27 02:54:02 -0400 (Wed, 27 Apr 2005)
New Revision: 43641

Modified:
   trunk/mcs/tests/ChangeLog
   trunk/mcs/tests/Makefile
   trunk/mcs/tests/test-294.cs
Log:
2005-04-27  Marek Safar <[EMAIL PROTECTED]>

        * test-294.cs: Add test based on #74378

Modified: trunk/mcs/tests/ChangeLog
===================================================================
--- trunk/mcs/tests/ChangeLog   2005-04-27 06:53:12 UTC (rev 43640)
+++ trunk/mcs/tests/ChangeLog   2005-04-27 06:54:02 UTC (rev 43641)
@@ -1,3 +1,7 @@
+2005-04-27  Marek Safar <[EMAIL PROTECTED]>
+
+       * test-294.cs: Add test based on #74378
+
 2005-04-26  Marek Safar <[EMAIL PROTECTED]>
 
        * cls-test-6.cs: Put in a new test.

Modified: trunk/mcs/tests/Makefile
===================================================================
--- trunk/mcs/tests/Makefile    2005-04-27 06:53:12 UTC (rev 43640)
+++ trunk/mcs/tests/Makefile    2005-04-27 06:54:02 UTC (rev 43641)
@@ -32,7 +32,7 @@
 # Martin Baulig will manually move them into TEST_SOURCES_common after merging 
the code into GMCS.
 # He may also move some to TEST_EXCLUDE_net_2_0 if some of the merges are 
inappropriate for GMCS.
 #
-NEW_TEST_SOURCES_common = test-336 test-369 cls-test-6
+NEW_TEST_SOURCES_common = test-336 test-369 cls-test-6 test-294
 
 #
 # Please do _not_ add any tests here - all new tests should go into 
NEW_TEST_SOURCES_common
@@ -70,7 +70,7 @@
        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-289 test-290 \
-       test-291 test-292 test-293 test-294 test-295 test-296 test-297 test-298 
test-299 test-300 \
+       test-291 test-292 test-293          test-295 test-296 test-297 test-298 
test-299 test-300 \
        test-301 test-302 test-303 test-304 test-305 test-306 test-307          
test-309 test-310 \
        test-311 test-312 test-313 test-314 test-315 test-316 test-317 test-318 
         test-320 \
        test-321          test-323 test-324 test-325 test-326 test-327 test-328 
test-329 test-330 \

Modified: trunk/mcs/tests/test-294.cs
===================================================================
--- trunk/mcs/tests/test-294.cs 2005-04-27 06:53:12 UTC (rev 43640)
+++ trunk/mcs/tests/test-294.cs 2005-04-27 06:54:02 UTC (rev 43641)
@@ -53,3 +53,14 @@
 class ObsoleteClass2: ObsoleteClass
 {
 }
+
+class ObsoleteClass3
+{
+       public static readonly double XSmall = 0.6444444444444;
+
+       [Obsolete ("E1")]
+       public readonly double X_Small = XSmall;
+
+       [Obsolete ("E2")]
+       public static readonly double X_Small2 = XSmall;
+}
\ No newline at end of file

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to