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

23 lines
268 B
C#
Raw Normal View History

// Compiler options: -target:library
public interface IA
{
string Prop { get; }
}
public interface IAA
{
char NestedProp { set; }
}
public interface IB : IAA
{
bool Prop { get; }
long NestedProp { set; }
}
public interface IFoo : IA, IB
{
int Prop { get; }
}