mlox/lox.t/super/parenthesized.lox

10 lines
138 B
Lox
Raw Normal View History

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