Merge pull request #4431 from vkargov/vk-leaking-points
[mono.git] / mcs / tests / gtest-500.cs
1 using System;
2
3 interface I
4 {
5 }
6
7 struct S : I
8 {
9 }
10
11 class Program
12 {
13         public static int Main ()
14         {
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;
21
22                 S? s = new S ();
23                 I iface = s;
24
25                 return 0;
26         }
27 }