summaryrefslogtreecommitdiffstats
path: root/src/test/ui/extern/extern-types-unsized.stderr
blob: a79caced111bbfc6316643e49350b1428f3c7961 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
error[E0277]: the size for values of type `A` cannot be known at compilation time
  --> $DIR/extern-types-unsized.rs:22:20
   |
LL |     assert_sized::<A>();
   |                    ^ doesn't have a size known at compile-time
   |
   = help: the trait `Sized` is not implemented for `A`
note: required by a bound in `assert_sized`
  --> $DIR/extern-types-unsized.rs:19:17
   |
LL | fn assert_sized<T>() {}
   |                 ^ required by this bound in `assert_sized`
help: consider relaxing the implicit `Sized` restriction
   |
LL | fn assert_sized<T: ?Sized>() {}
   |                  ++++++++

error[E0277]: the size for values of type `A` cannot be known at compilation time
  --> $DIR/extern-types-unsized.rs:25:20
   |
LL |     assert_sized::<Foo>();
   |                    ^^^ doesn't have a size known at compile-time
   |
   = help: within `Foo`, the trait `Sized` is not implemented for `A`
note: required because it appears within the type `Foo`
  --> $DIR/extern-types-unsized.rs:9:8
   |
LL | struct Foo {
   |        ^^^
note: required by a bound in `assert_sized`
  --> $DIR/extern-types-unsized.rs:19:17
   |
LL | fn assert_sized<T>() {}
   |                 ^ required by this bound in `assert_sized`
help: consider relaxing the implicit `Sized` restriction
   |
LL | fn assert_sized<T: ?Sized>() {}
   |                  ++++++++

error[E0277]: the size for values of type `A` cannot be known at compilation time
  --> $DIR/extern-types-unsized.rs:28:20
   |
LL |     assert_sized::<Bar<A>>();
   |                    ^^^^^^ doesn't have a size known at compile-time
   |
   = help: within `Bar<A>`, the trait `Sized` is not implemented for `A`
note: required because it appears within the type `Bar<A>`
  --> $DIR/extern-types-unsized.rs:14:8
   |
LL | struct Bar<T: ?Sized> {
   |        ^^^
note: required by a bound in `assert_sized`
  --> $DIR/extern-types-unsized.rs:19:17
   |
LL | fn assert_sized<T>() {}
   |                 ^ required by this bound in `assert_sized`
help: consider relaxing the implicit `Sized` restriction
   |
LL | fn assert_sized<T: ?Sized>() {}
   |                  ++++++++

error[E0277]: the size for values of type `A` cannot be known at compilation time
  --> $DIR/extern-types-unsized.rs:31:20
   |
LL |     assert_sized::<Bar<Bar<A>>>();
   |                    ^^^^^^^^^^^ doesn't have a size known at compile-time
   |
   = help: within `Bar<Bar<A>>`, the trait `Sized` is not implemented for `A`
note: required because it appears within the type `Bar<A>`
  --> $DIR/extern-types-unsized.rs:14:8
   |
LL | struct Bar<T: ?Sized> {
   |        ^^^
note: required by a bound in `assert_sized`
  --> $DIR/extern-types-unsized.rs:19:17
   |
LL | fn assert_sized<T>() {}
   |                 ^ required by this bound in `assert_sized`
help: consider relaxing the implicit `Sized` restriction
   |
LL | fn assert_sized<T: ?Sized>() {}
   |                  ++++++++

error: aborting due to 4 previous errors

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