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>2006-03-24 01:27:43 +0300
committerMarek Safar <marek.safar@gmail.com>2006-03-24 01:27:43 +0300
commitc056798bb915fcf142ff4a4e15f9c7997e91001f (patch)
treef33771e33fcec57f567675d46fb7961a2ec2d363 /mcs/tests/test-238.cs
parentfca89672555bea6b9b9f946a48a297bad51a88e9 (diff)
2006-03-23 Marek Safar <marek.safar@seznam.cz>
* attribute.cs (Attribute.ResolveConstructor): Check for an invalid attribute arguments here. * class.cs (Indexer.Define): The check was moved to attribute class. svn path=/trunk/mcs/; revision=58399
Diffstat (limited to 'mcs/tests/test-238.cs')
-rw-r--r--mcs/tests/test-238.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/tests/test-238.cs b/mcs/tests/test-238.cs
index ba745a101ca..def44e87b7c 100644
--- a/mcs/tests/test-238.cs
+++ b/mcs/tests/test-238.cs
@@ -2,7 +2,7 @@ using System;
using System.Diagnostics;
class TestClass {
- [Conditional ("UNDEFINED CONDITION")]
+ [Conditional ("UNDEFINED_CONDITION")]
static void ConditionalMethod ()
{
Environment.Exit (1);