]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/impl-trait/where-allowed.stderr
Rollup merge of #101573 - lcnr:param-kind-ord, r=BoxyUwU
[rust.git] / src / test / ui / impl-trait / where-allowed.stderr
index 58a2f79efb4c643e5f0cecdfbbb25faf395064b1..9b346387d61064cbf9bd4d01a47fb4fd0cc1028a 100644 (file)
@@ -162,12 +162,18 @@ error[E0562]: `impl Trait` only allowed in function and inherent method return t
    |
 LL |     fn in_return() -> impl Debug;
    |                       ^^^^^^^^^^
+   |
+   = note: see issue #91611 <https://github.com/rust-lang/rust/issues/91611> for more information
+   = help: add `#![feature(return_position_impl_trait_in_trait)]` to the crate attributes to enable
 
 error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in `impl` method return
   --> $DIR/where-allowed.rs:125:34
    |
 LL |     fn in_trait_impl_return() -> impl Debug { () }
    |                                  ^^^^^^^^^^
+   |
+   = note: see issue #91611 <https://github.com/rust-lang/rust/issues/91611> for more information
+   = help: add `#![feature(return_position_impl_trait_in_trait)]` to the crate attributes to enable
 
 error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in `extern fn` param
   --> $DIR/where-allowed.rs:138:33