rust/tests/pretty/use-tree.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
511 B
Rust
Raw Normal View History

2022-02-08 05:24:13 +00:00
// pp-exact
// edition:2021
#![allow(unused_imports)]
use ::std::fmt::{self, Debug, Display, Write as _};
use core::option::Option::*;
2022-02-08 05:34:04 +00:00
use core::{
cmp::{Eq, Ord, PartialEq, PartialOrd},
2022-02-08 05:24:13 +00:00
convert::{AsMut, AsRef, From, Into},
2022-02-08 05:34:04 +00:00
iter::{
DoubleEndedIterator, ExactSizeIterator, Extend, FromIterator,
IntoIterator, Iterator,
},
marker::{
Copy as Copy, Send as Send, Sized as Sized, Sync as Sync, Unpin as U,
},
ops::{*, Drop, Fn, FnMut, FnOnce},
};
2022-02-08 05:24:13 +00:00
fn main() {}