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>2008-04-01 20:04:49 +0400
committerMarek Safar <marek.safar@gmail.com>2008-04-01 20:04:49 +0400
commit7e0dd6e434f7247664354d6edcb5eb26735f27ff (patch)
tree6034625d4f3e6385904ea73cc88fa322719013bf /mcs/tests/gtest-358.cs
parenta042b01cc2a2ca8d0a3c4a374d6d4d2ed0d340a4 (diff)
Fixed.
svn path=/trunk/mcs/; revision=99538
Diffstat (limited to 'mcs/tests/gtest-358.cs')
-rw-r--r--mcs/tests/gtest-358.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/tests/gtest-358.cs b/mcs/tests/gtest-358.cs
index a933995b4a7..854d7ca3d41 100644
--- a/mcs/tests/gtest-358.cs
+++ b/mcs/tests/gtest-358.cs
@@ -6,12 +6,12 @@ struct Foo
{
public static bool operator == (Foo d1, Foo d2)
{
- return false;
+ throw new ApplicationException ();
}
public static bool operator != (Foo d1, Foo d2)
{
- return true;
+ throw new ApplicationException ();
}
}