summaryrefslogtreecommitdiffstats
path: root/tests/ui/generic-associated-types/cross-crate-bounds.stderr
blob: 83ee04d5a6c600c1b66be81974620cbf4545b219 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0277]: the trait bound `(): AsRef<()>` is not satisfied
  --> $DIR/cross-crate-bounds.rs:15:16
   |
LL |     type Bar = ();
   |                ^^ the trait `AsRef<()>` is not implemented for `()`
   |
note: required by a bound in `foo_defn::Foo::Bar`
  --> $DIR/auxiliary/foo_defn.rs:4:15
   |
LL |     type Bar: AsRef<()>;
   |               ^^^^^^^^^ required by this bound in `Foo::Bar`

error: aborting due to previous error

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