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
/
BCE0153-1.boo
blob
56ee05a35cdb56bbb6766e229dc6c3a1542285ba
1
"""
2
BCE0153-1.boo(4,17): BCE0153: 'final' can not be applied to interface definitions.
3
"""
4
final interface
IFoo
:
5
def
Test
()
6
7
class
Bar
(
IFoo
):
8
def
Test
():
9
print
"Test"
10
11
Bar
().
Test
()