``` type_id_6<'T, 'E> = | Ok('T) | Err({payload: 'E}) ``` It works for `'T`, but not for `'E` Errors: ``` Did you mean `e` instead of `E`? ``` ``` The type variable name '_ is not allowed in programs ```