2018-07-15 16:11:54 -05:00
|
|
|
error[E0271]: type mismatch resolving `for<'a> <() as Array<'a>>::Element == ()`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-39970.rs:19:5
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
2019-08-24 16:44:43 -05:00
|
|
|
LL | fn visit() {}
|
|
|
|
| ---------- required by `Visit::visit`
|
|
|
|
...
|
2018-07-15 16:11:54 -05:00
|
|
|
LL | <() as Visit>::visit();
|
2019-11-15 11:37:01 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^ expected `&()`, found `()`
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
= note: required because of the requirements on the impl of `Visit` for `()`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0271`.
|