about summary refs log tree commit diff
path: root/tests/ui/trait-bounds/maybe-bound-with-assoc.stderr
blob: b2ae0584aff915adba4710044cf53f43e2e048a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
error: bound modifier `?` can only be applied to `Sized`
  --> $DIR/maybe-bound-with-assoc.rs:4:16
   |
LL | fn hasassoc<T: ?HasAssoc<Assoc = ()>>() {}
   |                ^^^^^^^^^^^^^^^^^^^^^

error: bound modifier `?` can only be applied to `Sized`
  --> $DIR/maybe-bound-with-assoc.rs:8:15
   |
LL | fn noassoc<T: ?NoAssoc<Missing = ()>>() {}
   |               ^^^^^^^^^^^^^^^^^^^^^^

error[E0220]: associated type `Missing` not found for `NoAssoc`
  --> $DIR/maybe-bound-with-assoc.rs:8:24
   |
LL | fn noassoc<T: ?NoAssoc<Missing = ()>>() {}
   |                        ^^^^^^^ associated type `Missing` not found

error: aborting due to 3 previous errors

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