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-1.boo
blob
8cc1c70a6c003405320493a38fb4e13d8c60d9a4
1
"""
2
BCE0071-1.boo(10,9): BCE0071: Inheritance cycle detected: 'A'.
3
"""
4
class
A
(
B
):
5
pass
6
7
class
B
(
C
):
8
pass
9
10
class
C
(
A
):
11
pass
12
13