Pluto.jl icon indicating copy to clipboard operation
Pluto.jl copied to clipboard

Reassignment inside let block depends on function wrapping

Open fonsp opened this issue 2 years ago • 0 comments

image

# ╔═╡ 91084099-6515-4cfb-8f79-755bd54cd6b0
begin
	x = 1
	
	let
		# f() = 123
		x = 2
	end
	x
end

# ╔═╡ 14f79ed1-782c-4e1a-888c-7a5249cf9c66
begin
	xe = 1
	
	let
		f() = 123
		xe = 2
	end
	xe
end

fonsp avatar Nov 14 '23 17:11 fonsp