Skip to content

Commit cb66500

Browse files
committedAug 19, 2019
test: add test from rust-lang#61041.
1 parent f4aa00b commit cb66500

File tree

2 files changed

+60
-0
lines changed

2 files changed

+60
-0
lines changed
 
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
pub struct Foo<A, B>(A, B);
2+
3+
impl<A, B> Foo<A, B> {
4+
const HOST_SIZE: usize = std::mem::size_of::<B>();
5+
6+
pub fn crash() -> bool {
7+
[5; Self::HOST_SIZE] == [6; 0] //~ ERROR no associated item named `HOST_SIZE`
8+
//~^ the size for values of type `A` cannot be known
9+
//~| the size for values of type `B` cannot be known
10+
}
11+
}
12+
13+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
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

Comments
 (0)
Please sign in to comment.