blob: 46d047a2de3d5daea1c6cf90192a89a65d5dcbfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
use std::mem;
struct Misc<T:?Sized>(T);
fn check<T: Iterator, U: ?Sized>() {
// suggest a where-clause, if needed
mem::size_of::<U>();
//~^ ERROR the size for values of type
mem::size_of::<Misc<U>>();
//~^ ERROR the size for values of type
// ... even if T occurs as a type parameter
<u64 as From<T>>::from;
//~^ ERROR `u64: From<T>` is not satisfied
<u64 as From<<T as Iterator>::Item>>::from;
//~^ ERROR `u64: From<<T as Iterator>::Item>` is not satisfied
// ... but not if there are inference variables
<Misc<_> as From<T>>::from;
//~^ ERROR `Misc<_>: From<T>` is not satisfied
// ... and also not if the error is not related to the type
mem::size_of::<[T]>();
//~^ ERROR the size for values of type
mem::size_of::<[&U]>();
//~^ ERROR the size for values of type
}
fn main() {
}
|