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
/
BCE0150-1.boo
blob
765d6e4ca8bfeada752ce4481491c31c2305b2c4
1
"""
2
BCE0150-1.boo(5,7): BCE0150: 'Test' is marked 'abstract final' and cannot contain instance member 'Blah'; all members must be marked static.
3
"""
4
abstract final class
Test
:
5
def
Blah
():
6
print
"Blah"
7
static def
Foo
():
8
print
"Foo"
9
10
Test
.
Foo
()