[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git] / mcs / tests / test-712.cs
blobdba30e2ac1f5cacc297d563aeec8bdf433483596
1 using System;
3 interface IFoo
5 bool Equals (object o);
8 class Hello : IFoo
10 public static void Main ()
12 IFoo f = new Hello ();
13 int i = f.GetHashCode ();
14 bool b = f.Equals (f);