|
| 1 | +error[E0599]: no associated item named `HOST_SIZE` found for type `Foo<A, B>` in the current scope |
| 2 | + --> $DIR/too_generic_eval_ice.rs:7:19 |
| 3 | + | |
| 4 | +LL | pub struct Foo<A, B>(A, B); |
| 5 | + | --------------------------- associated item `HOST_SIZE` not found for this |
| 6 | +... |
| 7 | +LL | [5; Self::HOST_SIZE] == [6; 0] |
| 8 | + | ^^^^^^^^^ associated item not found in `Foo<A, B>` |
| 9 | + | |
| 10 | + = note: the method `HOST_SIZE` exists but the following trait bounds were not satisfied: |
| 11 | + `A : std::marker::Sized` |
| 12 | + `B : std::marker::Sized` |
| 13 | + |
| 14 | +error[E0277]: the size for values of type `A` cannot be known at compilation time |
| 15 | + --> $DIR/too_generic_eval_ice.rs:7:13 |
| 16 | + | |
| 17 | +LL | [5; Self::HOST_SIZE] == [6; 0] |
| 18 | + | ^^^^^^^^^^^^^^^ doesn't have a size known at compile-time |
| 19 | + | |
| 20 | + = help: the trait `std::marker::Sized` is not implemented for `A` |
| 21 | + = note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait> |
| 22 | + = help: consider adding a `where A: std::marker::Sized` bound |
| 23 | +note: required by `Foo` |
| 24 | + --> $DIR/too_generic_eval_ice.rs:1:1 |
| 25 | + | |
| 26 | +LL | pub struct Foo<A, B>(A, B); |
| 27 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 28 | + |
| 29 | +error[E0277]: the size for values of type `B` cannot be known at compilation time |
| 30 | + --> $DIR/too_generic_eval_ice.rs:7:13 |
| 31 | + | |
| 32 | +LL | [5; Self::HOST_SIZE] == [6; 0] |
| 33 | + | ^^^^^^^^^^^^^^^ doesn't have a size known at compile-time |
| 34 | + | |
| 35 | + = help: the trait `std::marker::Sized` is not implemented for `B` |
| 36 | + = note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait> |
| 37 | + = help: consider adding a `where B: std::marker::Sized` bound |
| 38 | +note: required by `Foo` |
| 39 | + --> $DIR/too_generic_eval_ice.rs:1:1 |
| 40 | + | |
| 41 | +LL | pub struct Foo<A, B>(A, B); |
| 42 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 43 | + |
| 44 | +error: aborting due to 3 previous errors |
| 45 | + |
| 46 | +Some errors have detailed explanations: E0277, E0599. |
| 47 | +For more information about an error, try `rustc --explain E0277`. |
0 commit comments