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
When reporting the span for the error it chooses the previous line. This is quite confusing. The error here is that the '\U...' syntax takes exaclty 8 hex digits and 7 are provided.
This test program:
fn main() {
let c = 'a';
match c {
'a' => (),
'b' => (),
'\U0123456' => ()
}
}