summaryrefslogtreecommitdiff
path: root/tests/resolver/interface-prerequisite-cycle.test
blob: 585c7db5c7d05561184c9585e202223d7e21e84a (plain)
1
2
3
4
5
6
7
8
9
10
Invalid Code

interface IBar : IFoo {
}

interface IFoo : IBar {
}

void main () {
}