Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-921-lib.cs
1 // Compiler options: -t:library
2
3 namespace Reference
4 {
5         public interface IB
6         {
7         }
8
9         public interface IA : IHide
10         {
11                 new IB Equals { get; }
12         }
13         
14         public interface IHide
15         {
16                 bool Equals(object o);
17         }
18 }