2014-01-18 01:29:10 +00:00
|
|
|
class Foo {
|
2015-09-15 14:46:09 +00:00
|
|
|
static methodOnFoo { System.print("foo") }
|
2014-01-18 01:29:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class Bar is Foo {}
|
|
|
|
|
|
2015-02-27 05:56:15 +00:00
|
|
|
Bar.methodOnFoo // expect runtime error: Bar metaclass does not implement 'methodOnFoo'.
|