Lazily nit mono_class_setup_supertypes correctly.
[mono-project.git] / mcs / tests / gtest-500.cs
blob58e16c959e5cbbfca99309060e7a32dd479b282f
1 using System;
3 interface I
7 struct S : I
11 class Program
13 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;