blob: 20232baa992bf565267d0950cf10042beb60816c [file] [edit]
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