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
Once 1.46 becomes stable, we should use the #[track_caller] feature to make all errors in this crate more informative following the idea outlined in this playground.
For example, this is how one could modify SynthesisError:
Once 1.46 becomes stable, we should use the
#[track_caller]
feature to make all errors in this crate more informative following the idea outlined in this playground.For example, this is how one could modify
SynthesisError
:This means that we can now track where an error originates, instead of having it show up only when we
unwrap()
.The text was updated successfully, but these errors were encountered: