linux-packaging-mono/mcs/tests/test-921-lib.cs

18 lines
201 B
C#
Raw Normal View History

// Compiler options: -t:library
namespace Reference
{
public interface IB
{
}
public interface IA : IHide
{
new IB Equals { get; }
}
public interface IHide
{
bool Equals(object o);
}
}