Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-712.cs
1 using System;
2
3 interface IFoo
4 {
5         bool Equals (object o);
6 }
7
8 class Hello : IFoo
9 {
10         public static void Main ()
11         {
12                 IFoo f = new Hello ();
13                 int i = f.GetHashCode ();
14                 bool b = f.Equals (f);
15         }
16 }