By chance I came across this behavior: ```Julia ca = ComponentVector(a=1, b=2, c=3) ca[:a, :b] # returns 'random' number, probably some uninitialized memory ca[:a, :x] # errors, ":x not found" ``` I think it would be safer if it would error in both cases.