dplassgit / d2lang

D2 is a strongly-typed, statically-typed, (mostly) inferred-type compiled language.
MIT License
6 stars 1 forks source link

TempPropagationOptimizer is not caching cached values #272

Closed dplassgit closed 9 months ago

dplassgit commented 9 months ago

This program gives the wrong output:

a=1
b=a
a=2
println b

It was printing 2 instead of 1.