summaryrefslogtreecommitdiffstats
path: root/src/test/ui/dst/dst-sized-trait-param.stderr
blob: 8ec94f5a3c0aded8196fddbfaa46f65284fb9c30 (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
error[E0277]: the size for values of type `[isize]` cannot be known at compilation time
  --> $DIR/dst-sized-trait-param.rs:7:6
   |
LL | impl Foo<[isize]> for usize { }
   |      ^^^^^^^^^^^^ doesn't have a size known at compile-time
   |
   = help: the trait `Sized` is not implemented for `[isize]`
note: required by a bound in `Foo`
  --> $DIR/dst-sized-trait-param.rs:5:11
   |
LL | trait Foo<T> : Sized { fn take(self, x: &T) { } } // Note: T is sized
   |           ^ required by this bound in `Foo`
help: consider relaxing the implicit `Sized` restriction
   |
LL | trait Foo<T: ?Sized> : Sized { fn take(self, x: &T) { } } // Note: T is sized
   |            ++++++++

error[E0277]: the size for values of type `[usize]` cannot be known at compilation time
  --> $DIR/dst-sized-trait-param.rs:10:6
   |
LL | impl Foo<isize> for [usize] { }
   |      ^^^^^^^^^^ doesn't have a size known at compile-time
   |
   = help: the trait `Sized` is not implemented for `[usize]`
note: required by a bound in `Foo`
  --> $DIR/dst-sized-trait-param.rs:5:16
   |
LL | trait Foo<T> : Sized { fn take(self, x: &T) { } } // Note: T is sized
   |                ^^^^^ required by this bound in `Foo`

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0277`.