Sukera
Sukera
For comparison, the `Printf` stdlib returns the correct result: ``` julia> using Printf julia> @sprintf "%.1e" 0.0003 "3.0e-04" ```
Thank you for the bug report! This is very weird; I'm not sure what's going on, so as a workaround, your best option is to make sure variables in your...
Ok wow, this might be related to the weird scoping behavior of closures/let blocks. Placing the `@check` in an `@testset` makes the function being generated under the hood into a...
Reduced to this MWE, which I'm going to report upstream: ```julia julia> let; function a() b() end function b() b = 1 return b end @show a() @show a() end...