blob: 69d4f7bb041efc1b3203388ef77f8a195a6ffb8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Compiler options: -t:library
public interface IAAA
{
}
public interface IBBB
{
}
public interface IYYY
{
void Foo(IAAA query);
}
public interface IZZZ : IYYY
{
void Foo(IBBB command);
}
|