2002-06-17 Miguel de Icaza <miguel@ximian.com>
[mono.git] / mcs / tests / test-124.cs
1 using System.Drawing;
2
3 namespace N1
4 {       
5         public class D
6         {
7                 public static int Main ()
8                 {
9                         Rectangle rect = new Rectangle ();
10                         N (rect);
11                         
12                         return 0;
13                 }
14
15                 public static bool N (RectangleF rect)
16                 {
17                         if (rect.X > rect.Y)
18                                 return true;
19                         
20                         return false;
21                 }
22         }
23 }
24