Merge pull request #5636 from BrzVlad/fix-xmm-scan
[mono.git] / mcs / tests / test-741-lib.cs
1 // Compiler options: -target:library
2
3 public interface IA
4 {
5         string Prop { get; }
6 }
7
8 public interface IAA
9 {
10         char NestedProp { set; }
11 }
12
13 public interface IB : IAA
14 {
15         bool Prop { get; }
16         long NestedProp { set; }
17 }
18
19 public interface IFoo : IA, IB
20 {
21         int Prop { get; }
22 }