Var reference isn't resolved as a var in let binding expression
Closed this issue · 0 comments
borkdude commented
Repro:
(def x 1)
(let [x 1 x #'x] x)
returns 1. Somehow when there's a let binding with the same name as a var, the var gets resolved as a value.