2014-04-19 18:51:36 +00:00
|
|
|
class Base {}
|
|
|
|
|
|
|
|
|
|
class Derived is Base {
|
2015-09-01 15:16:04 +00:00
|
|
|
construct new() {}
|
2015-02-27 05:56:15 +00:00
|
|
|
foo { super.doesNotExist(1) } // expect runtime error: Base does not implement 'doesNotExist(_)'.
|
2014-04-19 18:51:36 +00:00
|
|
|
}
|
|
|
|
|
|
2015-07-10 16:18:22 +00:00
|
|
|
Derived.new().foo
|