2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-229.cs
blob2006e12c854126a4fbb6268c3800a8208afbc35a
1 using System;
2 using System.Collections;
3 using System.Collections.Generic;
5 public class B : IComparable<B> {
6 public int CompareTo (B b)
8 return 0;
12 public class Tester
14 static int Main ()
16 B b = new B ();
18 // This should be false
19 if (b is IComparable<object>)
20 return 1;
21 return 0;