]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-types/issue-44153.stderr
Point at `impl` and type defs introducing requirements on E0277
[rust.git] / src / test / ui / associated-types / issue-44153.stderr
1 error[E0271]: type mismatch resolving `<() as Array>::Element == &()`
2   --> $DIR/issue-44153.rs:18:5
3    |
4 LL |     fn visit() {}
5    |     ---------- required by `Visit::visit`
6 ...
7 LL |     <() as Visit>::visit();
8    |     ^^^^^^^^^^^^^^^^^^^^ expected `&()`, found `()`
9    |
10 note: required because of the requirements on the impl of `Visit` for `()`
11   --> $DIR/issue-44153.rs:13:10
12    |
13 LL | impl<'a> Visit for () where
14    |          ^^^^^     ^^
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0271`.