You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As part of updating the tests/rust submodule for the catch-expressions PR, I found syn can't parse u128 literals.
let raw = "0x112233445566778899aabbccddeeff11u128";let actual = parse_expr(raw).unwrap();// fails
Prevents test_round_trip from parsing atleast tests/rust/src/libstd/net/ip.rs (parse_crate stops before the entire mod tests item that contains the literal, then complains that there are unparsed tokens).
As part of updating the
tests/rust
submodule for the catch-expressions PR, I found syn can't parse u128 literals.Prevents
test_round_trip
from parsing atleasttests/rust/src/libstd/net/ip.rs
(parse_crate
stops before the entiremod tests
item that contains the literal, then complains that there are unparsed tokens).Affected files:
tests/rust/src/libcompiler_builtins/lib.rs
tests/rust/src/libstd/net/ip.rs
tests/rust/src/test/run-pass/i128.rs
tests/rust/src/test/run-pass/i128-ffi.rs
tests/rust/src/test/run-pass/issue-38987.rs
tests/rust/src/test/run-pass/u128.rs
The text was updated successfully, but these errors were encountered: