rlox/interpreter/tests/lox/assignment/to_this.lox

7 lines
100 B
Lox
Raw Permalink Normal View History

2024-09-01 19:15:55 +02:00
class Foo {
Foo() {
this = "value"; // Error at '=': Invalid assignment target.
}
}
Foo();