[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / tests / test-824-lib.cs
1 // Compiler options: -t:library
2
3 public interface IAAA
4 {
5 }
6
7 public interface IBBB
8 {
9 }
10
11 public interface IYYY
12 {
13         void Foo(IAAA query);
14 }
15
16
17 public interface IZZZ : IYYY
18 {
19         void Foo(IBBB command);
20 }
21