dlr bug
[mcs.git] / tests / test-712.cs
blob5f422e6f45bfd630e5c33dc53faacbac11fb8cec
1 using System;
3 interface IFoo
5 bool Equals (object o);
8 class Hello : IFoo
10 static void Main ()
12 IFoo f = new Hello ();
13 int i = f.GetHashCode ();
14 bool b = f.Equals (f);