Add pretty printer test for use trees

This commit is contained in:
David Tolnay 2022-02-07 21:24:13 -08:00
parent e7cc3bddbe
commit 8b13fd447a
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82

View File

@ -0,0 +1,17 @@
// pp-exact
// edition:2021
#![allow(unused_imports)]
use ::std::fmt::{self, Debug, Display, Write as _};
use core::option::Option::*;
use core::{cmp::{Eq, Ord, PartialEq, PartialOrd},
convert::{AsMut, AsRef, From, Into},
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}};
fn main() {}