| warning: where clause not allowed here | |
| --> $DIR/span-extend-prev-while-multibyte.rs:6:12 | |
| | | |
| LL | type 否 where = (); | |
| | ^^^^^ | |
| | | |
| = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information | |
| = note: `#[warn(deprecated_where_clause_location)]` on by default | |
| help: move it to the end of the type declaration | |
| | | |
| LL - type 否 where = (); | |
| LL + type 否 = () where; | |
| | | |
| warning: 1 warning emitted | |