[System.Windows.Forms] Disable failing test
[mono-project.git] / mcs / tests / gtest-413.cs
blob5031c108eda151850aa37175d606133ce1b546b7
1 using System;
3 struct S
5 public static long operator + (S f, long n)
7 return n;
11 class Test
13 public static int Main ()
15 int? n = 1;
16 S f = new S ();
18 return (f + n) != 1 ? 1 : 0;