use ;
/// Fix-up a token stream to work around a hygiene bug in the Rust compiler.
///
/// This turns all none-delimited groups into parenthesis,
/// so that their precedence remains correct.
///
/// See https://github.com/rust-lang/rust/issues/74036
/// and https://github.com/rust-lang/rust/issues/67062