error[E0277]: the trait bound `for<'b> &'b S: Trait` is not satisfied --> $DIR/imm-ref-trait-object-literal-bound-regions.rs:17:5 | LL | foo::(s); | ^^^^^^^^ the trait `for<'b> Trait` is not implemented for `&'b S` | = help: the following implementations were found: <&'a mut S as Trait> note: required by a bound in `foo` --> $DIR/imm-ref-trait-object-literal-bound-regions.rs:11:20 | LL | fn foo(_: X) | --- required by a bound in this LL | where LL | for<'b> &'b X: Trait, | ^^^^^ required by this bound in `foo` error: aborting due to previous error For more information about this error, try `rustc --explain E0277`.