You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I expected to see this happen: compilation success
Instead, this happened:
Compiling playground v0.0.1 (/playground)
error[[E0275]](https://doc.rust-lang.org/nightly/error-index.html#E0275): overflow evaluating the requirement `Option<List<Optionize>>: Debug`
--> src/main.rs:36:22
|
36 | println!("{:?}", output);
| ^^^^^^
|
note: required for `List<Optionize>` to implement `Debug`
--> src/main.rs:18:10
|
18 | #[derive(Debug)]
| ^^^^^
= note: 1 redundant requirement hidden
= note: required for `Option<List<Optionize>>` to implement `Debug`
note: required by a bound in `ArgumentV1::<'a>::new_debug`
= note: this error originates in the macro `$crate::format_args_nl` which comes from the expansion of the macro `arg_new` (in Nightly builds, run with -Z macro-backtrace for more info)
For more information about this error, try `rustc --explain E0275`.
error: could not compile `playground` due to previous error
@VladimirBramstedt looks like your simpler example was fixed at some point (it compiles with the current nightly), but mine still throws the same error
I tried this code:
https://play.rust-lang.org/?version=nightly&mode=debug&edition=2021&gist=0ed2d890d6c301d7d07d6fbdb061d34e
I expected to see this happen: compilation success
Instead, this happened:
rustc --version --verbose
:Probably related:
#85063, #39959, #96634
But I guess this is a bit different, because GATs are involved?
The text was updated successfully, but these errors were encountered: