add ExcludeFromCodeCoverageAttribute
[mcs.git] / tests / test-741-lib.cs
blobd8fc5db8b3b681fbb18b23d433a4134f4e554ef9
1 // Compiler options: -target:library
3 public interface IA
5 string Prop { get; }
8 public interface IAA
10 char NestedProp { set; }
13 public interface IB : IAA
15 bool Prop { get; }
16 long NestedProp { set; }
19 public interface IFoo : IA, IB
21 int Prop { get; }