mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-01 03:03:40 +00:00
6dbad23641
``` error[E0277]: the trait bound `S: d::Hidden` is not satisfied --> $DIR/sealed-trait-local.rs:53:20 | LL | impl c::Sealed for S {} | ^ the trait `d::Hidden` is not implemented for `S` | note: required by a bound in `c::Sealed` --> $DIR/sealed-trait-local.rs:17:23 | LL | pub trait Sealed: self::d::Hidden { | ^^^^^^^^^^^^^^^ required by this bound in `Sealed` = note: `Sealed` is a "sealed trait", because to implement it you also need to implement `c::d::Hidden`, which is not accessible; this is usually done to force you to use one of the provided types that already implement it = help: the following types implement the trait: - c::X - c::Y ``` The last `help` is new. |
||
---|---|---|
.. | ||
private-trait-non-local.rs | ||
private-trait-non-local.stderr | ||
private-trait.rs | ||
private-trait.stderr | ||
re-exported-trait.fixed | ||
re-exported-trait.rs | ||
re-exported-trait.stderr | ||
sealed-trait-local.rs | ||
sealed-trait-local.stderr |