rlox/interpreter/tests/lox/variable/collide_with_parameter.lox

3 lines
24 B
Lox
Raw Normal View History

2024-09-01 19:15:55 +02:00
fun foo(a) {
2024-09-02 15:35:28 +02:00
var a;
2024-09-01 19:15:55 +02:00
}