2017-01-16 14:50:27 +13:00
|
|
|
// rustfmt-normalize_comments: true
|
|
|
|
|
2015-04-29 15:00:58 +12:00
|
|
|
// Imports.
|
|
|
|
|
|
|
|
// Long import.
|
2018-04-29 21:03:49 +08:00
|
|
|
use exceedingly::loooooooooooooooooooooooooooooooooooooooooooooooooooooooong::import::path::{
|
|
|
|
ItemA, ItemB,
|
|
|
|
};
|
|
|
|
use exceedingly::looooooooooooooooooooooooooooooooooooooooooooooooooooooooooong::import::path::{
|
|
|
|
ItemA, ItemB,
|
|
|
|
};
|
2018-03-12 17:24:04 +13:00
|
|
|
use syntax::ast::{ItemDefaultImpl, ItemForeignMod, ItemImpl, ItemMac, ItemMod, ItemStatic};
|
2015-04-29 15:00:58 +12:00
|
|
|
|
2018-04-29 21:03:49 +08:00
|
|
|
use list::{
|
|
|
|
// Another item
|
|
|
|
AnotherItem, // Another Comment
|
|
|
|
// Last Item
|
|
|
|
LastItem,
|
|
|
|
// Some item
|
2018-04-30 13:21:17 +12:00
|
|
|
SomeItem, // Comment
|
2018-04-29 21:03:49 +08:00
|
|
|
};
|
2015-06-26 03:29:54 +02:00
|
|
|
|
|
|
|
use test::{/* A */ self /* B */, Other /* C */};
|
|
|
|
|
2018-03-12 17:24:04 +13:00
|
|
|
use syntax;
|
2017-07-13 18:43:35 +09:00
|
|
|
pub use syntax::ast::{Expr, ExprAssign, ExprCall, ExprMethodCall, ExprPath, Expr_};
|
2018-03-31 13:16:36 +09:00
|
|
|
use Foo::{Bar, Baz};
|
2018-03-15 14:06:54 +13:00
|
|
|
use {Bar /* comment */, /* Pre-comment! */ Foo};
|
2015-05-02 19:12:16 +02:00
|
|
|
|
2017-01-06 17:02:56 +13:00
|
|
|
use std::io;
|
|
|
|
use std::io;
|
|
|
|
|
2015-05-02 19:12:16 +02:00
|
|
|
mod Foo {
|
2018-04-29 21:03:49 +08:00
|
|
|
pub use syntax::ast::{
|
|
|
|
ItemDefaultImpl, ItemForeignMod, ItemImpl, ItemMac, ItemMod, ItemStatic,
|
|
|
|
};
|
2015-05-02 19:12:16 +02:00
|
|
|
|
|
|
|
mod Foo2 {
|
2018-04-29 21:03:49 +08:00
|
|
|
pub use syntax::ast::{
|
|
|
|
self, ItemDefaultImpl, ItemForeignMod, ItemImpl, ItemMac, ItemMod, ItemStatic,
|
|
|
|
};
|
2015-05-02 19:12:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test() {
|
|
|
|
use Baz::*;
|
2015-06-26 03:29:54 +02:00
|
|
|
use Qux;
|
2015-05-02 19:12:16 +02:00
|
|
|
}
|
2015-07-25 23:10:48 +02:00
|
|
|
|
|
|
|
// Simple imports
|
|
|
|
use bar::quux as kaas;
|
|
|
|
use foo;
|
2018-03-14 20:43:01 +13:00
|
|
|
use foo::bar::baz;
|
2015-09-26 18:12:25 +12:00
|
|
|
|
|
|
|
// With aliases.
|
|
|
|
use foo as bar;
|
|
|
|
use foo::qux as bar;
|
2018-03-14 20:43:01 +13:00
|
|
|
use foo::{self as bar, baz};
|
2015-09-26 18:12:25 +12:00
|
|
|
use foo::{baz, qux as bar};
|
2016-06-08 13:00:11 +02:00
|
|
|
|
|
|
|
// With absolute paths
|
2018-03-15 14:06:54 +13:00
|
|
|
use foo;
|
2017-01-19 10:47:07 +13:00
|
|
|
use foo::Bar;
|
|
|
|
use foo::{Bar, Baz};
|
2018-03-31 13:16:36 +09:00
|
|
|
use Foo;
|
2017-01-19 10:47:07 +13:00
|
|
|
use {Bar, Baz};
|
2017-03-08 10:10:56 +13:00
|
|
|
|
2017-07-12 12:53:02 -04:00
|
|
|
// Root globs
|
2018-03-31 13:16:36 +09:00
|
|
|
use *;
|
2018-03-22 16:01:41 +09:00
|
|
|
use *;
|
2017-07-12 12:53:02 -04:00
|
|
|
|
2017-03-08 10:10:56 +13:00
|
|
|
// spaces used to cause glob imports to disappear (#1356)
|
|
|
|
use super::*;
|
|
|
|
use foo::issue_1356::*;
|
2017-08-06 19:42:07 -04:00
|
|
|
|
|
|
|
// We shouldn't remove imports which have attributes attached (#1858)
|
|
|
|
#[cfg(unix)]
|
|
|
|
use self::unix::{};
|
2017-12-09 16:43:06 +09:00
|
|
|
|
|
|
|
// nested imports
|
2018-04-29 21:03:49 +08:00
|
|
|
use foo::{
|
2018-05-02 22:11:50 +08:00
|
|
|
a, b,
|
2018-04-29 21:03:49 +08:00
|
|
|
bar::{
|
2018-06-05 19:58:21 +09:00
|
|
|
baz,
|
|
|
|
foo::{a, b, cxxxxxxxxxxxxx, yyyyyyyyyyyyyy, zzzzzzzzzzzzzzzz},
|
|
|
|
qux, xxxxxxxxxxx, yyyyyyyyyyyyy, zzzzzzzzzzzzzzzz,
|
2018-04-29 21:03:49 +08:00
|
|
|
},
|
2018-05-02 22:11:50 +08:00
|
|
|
boo, c,
|
2018-04-29 21:03:49 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
use fooo::{
|
|
|
|
baar::foobar::{
|
|
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx, yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy,
|
|
|
|
zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz,
|
|
|
|
},
|
2018-06-05 19:58:28 +09:00
|
|
|
bar,
|
|
|
|
bar::*,
|
|
|
|
x, y, z,
|
|
|
|
};
|
|
|
|
|
|
|
|
use exonum::{
|
|
|
|
api::{Api, ApiError},
|
|
|
|
blockchain::{self, BlockProof, Blockchain, Transaction, TransactionSet},
|
|
|
|
crypto::{Hash, PublicKey},
|
|
|
|
helpers::Height,
|
|
|
|
node::TransactionSend,
|
|
|
|
storage::{ListProof, MapProof},
|
2018-04-29 21:03:49 +08:00
|
|
|
};
|
2017-12-09 16:43:06 +09:00
|
|
|
|
|
|
|
// nested imports with a single sub-tree.
|
|
|
|
use a::b::c::d;
|
2018-03-14 20:43:01 +13:00
|
|
|
use a::b::c::*;
|
2017-12-09 16:43:06 +09:00
|
|
|
use a::b::c::{xxx, yyy, zzz};
|
2018-04-28 16:03:26 +09:00
|
|
|
|
|
|
|
// #2645
|
|
|
|
/// This line is not affected.
|
|
|
|
// This line is deleted.
|
|
|
|
use c;
|
2018-05-06 17:00:51 +09:00
|
|
|
|
|
|
|
// #2670
|
|
|
|
#[macro_use]
|
|
|
|
use imports_with_attr;
|
2018-08-03 20:06:29 +09:00
|
|
|
|
|
|
|
// #2888
|
|
|
|
use std::f64::consts::{E, PI, SQRT_2};
|