This code works, of course:
@x = { :all => { :x => 1, :y => 2 } }
But this doesn't:
@x = { :abc, :all => { :x => 1, :y => 2 } }
Is there any way to do what I want here? i.e. I want two keys in a hash to each refer to the same (copy of a) value. But I only want to specify the value once.