mlox/lox.t/super/super_without_dot.lox
2024-08-03 02:44:12 +02:00

8 lines
112 B
Lox

class A {}
class B < A {
method() {
// [line 6] Error at ';': Expect '.' after 'super'.
super;
}
}