repo.or.cz
/
boo.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Correct resolution of inherited default members on external interfaces
[boo.git]
/
tests
/
testcases
/
errors
/
BCE0071-2.boo
blob
08254d38f85a7d14262c3ba879675a88ae431b5d
1
"""
2
BCE0071-2.boo(10,14): BCE0071: Inheritance cycle detected: 'IA'.
3
"""
4
interface
IA
(
IB
):
5
pass
6
7
interface
IB
(
IC
):
8
pass
9
10
interface
IC
(
IA
):
11
pass
12
13