rlox/interpreter/tests/lox/super/super_without_name.lox

7 lines
105 B
Lox
Raw Permalink Normal View History

2024-09-01 19:15:55 +02:00
class A {}
class B < A {
method() {
super.; // Error at ';': Expect superclass method name.
}
}