about summary refs log tree commit diff
path: root/tests/ui/typeck/issue-103899.current.stderr
blob: a3a164907be48bea6bfc443859430f98d9d1a37a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0277]: the trait bound `(): BaseWithAssoc` is not satisfied
  --> $DIR/issue-103899.rs:24:54
   |
LL | fn trigger<L: WrapperWithAssoc<BaseAssoc = ()>>() -> DoubleProject<L> {
   |                                                      ^^^^^^^^^^^^^^^^ the trait `BaseWithAssoc` is not implemented for `()`
   |
help: this trait has no implementations, consider adding one
  --> $DIR/issue-103899.rs:4:1
   |
LL | trait BaseWithAssoc {
   | ^^^^^^^^^^^^^^^^^^^

error: aborting due to 1 previous error

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