2025-02-27 08:21:47 +00:00
|
|
|
error[E0308]: mismatched types
|
2019-05-28 14:46:13 -04:00
|
|
|
--> $DIR/feature-gate-unsized_tuple_coercion.rs:2:28
|
2017-12-06 09:27:47 +01:00
|
|
|
|
|
2019-05-28 14:46:13 -04:00
|
|
|
LL | let _ : &(dyn Send,) = &((),);
|
2025-02-27 08:21:47 +00:00
|
|
|
| ------------ ^^^^^^ expected `&(dyn Send,)`, found `&((),)`
|
|
|
|
|
| |
|
|
|
|
|
| expected due to this
|
2017-12-06 09:27:47 +01:00
|
|
|
|
|
2025-02-27 08:21:47 +00:00
|
|
|
= note: expected reference `&(dyn Send,)`
|
|
|
|
|
found reference `&((),)`
|
2017-12-06 09:27:47 +01:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2017-12-06 09:27:47 +01:00
|
|
|
|
2025-02-27 08:21:47 +00:00
|
|
|
For more information about this error, try `rustc --explain E0308`.
|