Skip to content

Commit

Permalink
Add pretty printer test for use trees
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Feb 8, 2022
1 parent e7cc3bd commit 8b13fd4
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/test/pretty/use-tree.rs
@@ -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() {}

0 comments on commit 8b13fd4

Please sign in to comment.