2014-01-17 17:29:10 -08:00
|
|
|
class Foo {
|
2015-09-15 07:46:09 -07:00
|
|
|
static methodOnFoo { System.print("foo") }
|
2014-01-17 17:29:10 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class Bar is Foo {}
|
|
|
|
|
|
2015-02-26 21:56:15 -08:00
|
|
|
Bar.methodOnFoo // expect runtime error: Bar metaclass does not implement 'methodOnFoo'.
|