Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-229.cs
1 using System;
2 using System.Collections;
3 using System.Collections.Generic;
4
5 public class B : IComparable<B> {
6         public int CompareTo (B b)
7         {
8                 return 0;
9         }
10 }
11
12 public class Tester
13 {
14         public static int Main ()
15         {
16                 B b = new B ();
17
18                 // This should be false
19                 if (b is IComparable<object>)
20                         return 1;
21                 return 0;
22         }
23 }