In the MWE below, `Inf` is treated as a variable rather than the literal `Inf`. ```julia using Turing @model mwe() = begin m ~ Normal(0, 1) Inf ~ Normal(m, 1) end sample(mwe(), HMC(0.1, 2), 100) ```