[System.Windows.Forms] Disable failing test
[mono-project.git] / mcs / tests / test-278.cs
blob9cbd6129b97ff4191402e0d12bbea3bdfb0c9fa2
1 using System;
3 struct Rect {
4 int x;
6 public int X { get { return x; } set { x = value; } }
9 class X {
10 public static int Main ()
12 Rect rect = new Rect ();
13 rect.X += 20;
14 Console.WriteLine ("Should be 20: " + rect.X);
15 return rect.X == 20 ? 0 : 1;