|
| 1 | +error[E0747]: type provided when a constant was expected |
| 2 | + --> $DIR/kind_mismatch.rs:11:38 |
| 3 | + | |
| 4 | +LL | impl<K> ContainsKey<K> for KeyHolder<K> {} |
| 5 | + | - ^ |
| 6 | + | | |
| 7 | + | help: consider changing this type parameter to a const parameter: `const K: u8` |
| 8 | + |
| 9 | +error[E0747]: type provided when a constant was expected |
| 10 | + --> $DIR/kind_mismatch.rs:11:21 |
| 11 | + | |
| 12 | +LL | impl<K> ContainsKey<K> for KeyHolder<K> {} |
| 13 | + | - ^ |
| 14 | + | | |
| 15 | + | help: consider changing this type parameter to a const parameter: `const K: u8` |
| 16 | + |
| 17 | +error[E0277]: the trait bound `KeyHolder<0>: SubsetExcept<_>` is not satisfied |
| 18 | + --> $DIR/kind_mismatch.rs:22:45 |
| 19 | + | |
| 20 | +LL | let map: KeyHolder<0> = remove_key::<_, _>(); |
| 21 | + | ^ the trait `ContainsKey<0>` is not implemented for `KeyHolder<0>`, which is required by `KeyHolder<0>: SubsetExcept<_>` |
| 22 | + | |
| 23 | +note: required for `KeyHolder<0>` to implement `SubsetExcept<_>` |
| 24 | + --> $DIR/kind_mismatch.rs:15:28 |
| 25 | + | |
| 26 | +LL | impl<P, T: ContainsKey<0>> SubsetExcept<P> for T {} |
| 27 | + | -------------- ^^^^^^^^^^^^^^^ ^ |
| 28 | + | | |
| 29 | + | unsatisfied trait bound introduced here |
| 30 | +note: required by a bound in `remove_key` |
| 31 | + --> $DIR/kind_mismatch.rs:17:25 |
| 32 | + | |
| 33 | +LL | pub fn remove_key<K, S: SubsetExcept<K>>() -> S { |
| 34 | + | ^^^^^^^^^^^^^^^ required by this bound in `remove_key` |
| 35 | + |
| 36 | +error: aborting due to 3 previous errors |
| 37 | + |
| 38 | +Some errors have detailed explanations: E0277, E0747. |
| 39 | +For more information about an error, try `rustc --explain E0277`. |
0 commit comments