I expect this to work: ```julia using ModelingToolkit using ModelingToolkit: t_nounits as t, D_nounits as D @variables x(t) y(t) z(t) @mtkbuild sys = ODESystem([ D(x) ~ 0.0 D(y) ~ 0.0 z ~ 2.0 ], t; defaults = [y => z]) prob = ODEProblem(sys, [x => 1.0], (0.0, 1.0), []) ``` I specified `x => 1.0`, and the default should make `y => z ~ 2.0`. But (on master) it fails with ```julia ERROR: LoadError: ArgumentError: Any[z(t)] are either missing from the variable map or missing from the system's unknowns/parameters list. ```