summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0529-2.cs
blob: bf88f3a466bd18534d2c80dc6183aad5764ab73f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS0529: Inherited interface `IB' causes a cycle in the interface hierarchy of `IC'
// Line: 12

interface IC : IB
{
}

partial interface IB
{
}

partial interface IB : IC
{
}