[tuner] handle the case with multiple "preserve" attributes
[mono-project.git] / mcs / tests / gtest-500.cs
blobf44834f18070a5aea981ecaec81305253a540b5e
1 using System;
3 interface I
7 struct S : I
11 class Program
13 public static int Main ()
15 int? a = 5;
16 int? b = 5;
17 IComparable ic_a = a;
18 IComparable ic_b = b;
19 if (ic_a.CompareTo (ic_b) != 0)
20 return 1;
22 S? s = new S ();
23 I iface = s;
25 return 0;