Fuzzing found a crash with this input: ```toml -=0 ``` Minimal repro: ```swift try TOMLDecoder().decode(Int.self, from: "-=0\n") ``` Expected: decoding throws. Actual: integer unpacking can trap because the top-level keyed document leaves the decoder with `Token.empty`.
Fuzzing found a crash with this input:
Minimal repro:
Expected: decoding throws.
Actual: integer unpacking can trap because the top-level keyed document leaves the decoder with
Token.empty.