This breaks code that looks like this:
let x = foo as bar << 13;
Change such code to look like this:
let x = (foo as bar) << 13;
Closes #17362.
[breaking-change]
|
||
|---|---|---|
| .. | ||
| lib.rs | ||
| normalize.rs | ||
| tables.rs | ||
| u_char.rs | ||
| u_str.rs | ||
This breaks code that looks like this:
let x = foo as bar << 13;
Change such code to look like this:
let x = (foo as bar) << 13;
Closes #17362.
[breaking-change]
|
||
|---|---|---|
| .. | ||
| lib.rs | ||
| normalize.rs | ||
| tables.rs | ||
| u_char.rs | ||
| u_str.rs | ||