2021-07-03 16:18:13 +00:00
|
|
|
error[E0412]: cannot find type `Src` in this scope
|
2024-02-26 16:49:25 +00:00
|
|
|
--> $DIR/unknown_src.rs:18:31
|
2021-07-03 16:18:13 +00:00
|
|
|
|
|
2024-02-26 16:49:25 +00:00
|
|
|
LL | assert::is_transmutable::<Src, Dst>();
|
2021-07-03 16:18:13 +00:00
|
|
|
| ^^^ not found in this scope
|
2023-01-08 23:21:46 +00:00
|
|
|
|
|
|
|
|
help: you might be missing a type parameter
|
|
|
|
|
|
|
|
|
LL | fn should_gracefully_handle_unknown_src<Src>() {
|
|
|
|
| +++++
|
2021-07-03 16:18:13 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2021-07-03 16:18:13 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0412`.
|