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-03-19 14:12:21 +0300
committerMarek Safar <marek.safar@gmail.com>2008-03-19 14:12:21 +0300
commitac54dc8d39c5759c090c3a7f9c76a1b9738696ac (patch)
tree7d7be1baa0ce7c19cea483afb7801c33c2f6d30c /mcs/tests/test-577.cs
parent1b8aeb5fd77308c117a4c5ecf8b4e8bbc32c6fd5 (diff)
parentb251ce784aa16f7c3d52dfc4f334ee7b02f07c50 (diff)
New tests, migrated from errors.
svn path=/trunk/mcs/; revision=98583
Diffstat (limited to 'mcs/tests/test-577.cs')
-rw-r--r--mcs/tests/test-577.cs24
1 files changed, 0 insertions, 24 deletions
diff --git a/mcs/tests/test-577.cs b/mcs/tests/test-577.cs
deleted file mode 100644
index 2060c6056bd..00000000000
--- a/mcs/tests/test-577.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-using System;
-
-public class X {
- public static bool Compute (int x)
- {
- return x == null;
- }
-
- public static bool Compute2 (int x)
- {
- return x != null;
- }
-
- static int Main ()
- {
- if (Compute (1) != false)
- return 1;
-
- if (Compute2 (1) != true)
- return 1;
-
- return 0;
- }
-}