mlox/lox.t/super/super_without_dot.lox

8 lines
112 B
Lox
Raw Normal View History

2024-08-03 02:44:12 +02:00
class A {}
class B < A {
method() {
// [line 6] Error at ';': Expect '.' after 'super'.
super;
}
}