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:
Diffstat (limited to 'mcs/tests/test-124.cs')
-rw-r--r--mcs/tests/test-124.cs24
1 files changed, 0 insertions, 24 deletions
diff --git a/mcs/tests/test-124.cs b/mcs/tests/test-124.cs
deleted file mode 100644
index c28d9899d65..00000000000
--- a/mcs/tests/test-124.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-using System.Drawing;
-
-namespace N1
-{
- public class D
- {
- public static int Main ()
- {
- Rectangle rect = new Rectangle ();
- N (rect);
-
- return 0;
- }
-
- public static bool N (RectangleF rect)
- {
- if (rect.X > rect.Y)
- return true;
-
- return false;
- }
- }
-}
-