summary refs log tree commit diff
path: root/src/test/ui/issue-39970.stderr
blob: 397d7b8e650d2c3c832bf328de32ff3b73acbe32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error[E0271]: type mismatch resolving `for<'a> <() as Array<'a>>::Element == ()`
  --> $DIR/issue-39970.rs:29:5
   |
LL |     <() as Visit>::visit();
   |     ^^^^^^^^^^^^^^^^^^^^ expected &(), found ()
   |
   = note: expected type `&()`
              found type `()`
   = note: required because of the requirements on the impl of `Visit` for `()`
note: required by `Visit::visit`
  --> $DIR/issue-39970.rs:16:5
   |
LL |     fn visit() {}
   |     ^^^^^^^^^^

error: aborting due to previous error

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