Skip to content

Commit 8b13fd4

Browse files
committed
Add pretty printer test for use trees
1 parent e7cc3bd commit 8b13fd4

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

src/test/pretty/use-tree.rs

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// pp-exact
2+
// edition:2021
3+
4+
#![allow(unused_imports)]
5+
6+
use ::std::fmt::{self, Debug, Display, Write as _};
7+
8+
use core::option::Option::*;
9+
10+
use core::{cmp::{Eq, Ord, PartialEq, PartialOrd},
11+
convert::{AsMut, AsRef, From, Into},
12+
iter::{DoubleEndedIterator, ExactSizeIterator, Extend, FromIterator,
13+
IntoIterator, Iterator},
14+
marker::{Copy as Copy, Send as Send, Sized as Sized, Sync as Sync, Unpin
15+
as U}, ops::{*, Drop, Fn, FnMut, FnOnce}};
16+
17+
fn main() {}

0 commit comments

Comments
 (0)