I'm not sure if this would be useful in every-day code, but I just wrote some code where it would've been nice to say: ``` let foo: typeof(earlier_thing) = unsafe::transmute(...); ``` instead of ``` let foo: complicated::typename::that_might_change_later = unsafe::transmute(...); ```