rlox/interpreter/tests/lox/assignment/to_this.lox
2024-09-01 19:15:55 +02:00

7 lines
100 B
Lox

class Foo {
Foo() {
this = "value"; // Error at '=': Invalid assignment target.
}
}
Foo();