mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
4f83e50f98
Fixes #121410. Fixes #121414. Fixes #121418. Fixes #121431.
10 lines
364 B
Plaintext
10 lines
364 B
Plaintext
error[E0405]: cannot find trait `CallbackMarker` in this scope
|
|
--> $DIR/span-bug-issue-121431.rs:1:21
|
|
|
|
|
LL | fn bug<T>() -> impl CallbackMarker< Item = [(); { |_: &mut ()| 3; 4 }] > {}
|
|
| ^^^^^^^^^^^^^^ not found in this scope
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0405`.
|