Format PR 299 with rustfmt

This commit is contained in:
David Tolnay 2024-05-17 09:43:23 -07:00
parent 6b2b871f39
commit e3b1b91ced
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
2 changed files with 2 additions and 2 deletions

View file

@ -4,8 +4,8 @@
#![feature(error_generic_member_access)]
use std::error::{Error, Request};
use core::fmt::{self, Debug, Display};
use std::error::{Error, Request};
struct MyError(Thing);
struct Thing;

View file

@ -1,5 +1,5 @@
use std::error::Error;
use core::panic::UnwindSafe;
use std::error::Error;
#[doc(hidden)]
pub trait AsDynError<'a>: Sealed {