The following errors with Turing v0.21.1 and DynamicPPL v0.19.1. It was suggested on Slack this is a bug and to post here: ```julia @model function toy() x = Vector{Float64}(undef, 2) x .~ [Normal() for i=1:2] end toy()() # works rand(toy()) # ERROR: type NamedTuple has no field x ```