[System.Windows.Forms] Disable failing test
[mono-project.git] / mcs / tests / gtest-452.cs
blob8eafd9469f76d8036ead29c5c8cb7a1bf7874289
1 using System;
3 public class Test
5 public static int Main ()
7 S mc = new S ();
8 float? f = mc;
9 if (f != 5)
10 return 1;
12 return 0;
16 struct S
18 public static implicit operator float (S p1)
20 throw new ApplicationException ("should not be called");
23 public static implicit operator float? (S p1)
25 return 5;