rust/tests/target/imports.rs

89 lines
2.3 KiB
Rust
Raw Normal View History

// rustfmt-normalize_comments: true
// rustfmt-error_on_line_overflow: false
2015-04-29 05:00:58 +02:00
// Imports.
// Long import.
2015-09-04 18:09:05 +02:00
use exceedingly::loooooooooooooooooooooooooooooooooooooooooooooooooooooooong::import::path::{ItemA,
ItemB};
2018-03-12 05:24:04 +01:00
use exceedingly::looooooooooooooooooooooooooooooooooooooooooooooooooooooooooong::import::path::{ItemA,
ItemB};
use syntax::ast::{ItemDefaultImpl, ItemForeignMod, ItemImpl, ItemMac, ItemMod, ItemStatic};
2015-04-29 05:00:58 +02:00
2017-07-13 11:43:35 +02:00
use list::{// Another item
AnotherItem, // Another Comment
// Last Item
2017-07-13 11:43:35 +02:00
LastItem,
// Some item
SomeItem /* Comment */};
use test::{/* A */ self /* B */, Other /* C */};
2017-07-13 11:43:35 +02:00
use {Bar /* comment */, /* Pre-comment! */ Foo};
2015-04-29 05:00:58 +02:00
use Foo::{Bar, Baz};
2018-03-12 05:24:04 +01:00
use syntax;
2017-07-13 11:43:35 +02:00
pub use syntax::ast::{Expr, ExprAssign, ExprCall, ExprMethodCall, ExprPath, Expr_};
use self;
use std::io;
use std::io;
mod Foo {
2017-07-13 11:43:35 +02:00
pub use syntax::ast::{ItemDefaultImpl, ItemForeignMod, ItemImpl, ItemMac, ItemMod, ItemStatic};
mod Foo2 {
2017-07-13 11:43:35 +02:00
pub use syntax::ast::{self, ItemDefaultImpl, ItemForeignMod, ItemImpl, ItemMac, ItemMod,
ItemStatic};
}
}
fn test() {
use Baz::*;
use Qux;
}
2015-07-25 23:10:48 +02:00
// Simple imports
use foo::bar::baz;
use bar::quux as kaas;
use foo;
// With aliases.
use foo::{self as bar, baz};
use foo as bar;
use foo::qux as bar;
use foo::{baz, qux as bar};
2016-06-08 13:00:11 +02:00
// With absolute paths
use foo;
use foo::Bar;
use foo::{Bar, Baz};
use Foo;
use {Bar, Baz};
2017-03-07 22:10:56 +01:00
// Root globs
use ::*;
use ::*;
2017-03-07 22:10:56 +01:00
// spaces used to cause glob imports to disappear (#1356)
use super::*;
use foo::issue_1356::*;
// We shouldn't remove imports which have attributes attached (#1858)
#[cfg(unix)]
use self::unix::{};
2017-12-09 08:43:06 +01:00
// nested imports
use foo::{a, b, boo, c,
bar::{baz, qux, xxxxxxxxxxx, yyyyyyyyyyyyy, zzzzzzzzzzzzzzzz,
foo::{a, b, cxxxxxxxxxxxxx, yyyyyyyyyyyyyy, zzzzzzzzzzzzzzzz}}};
use fooo::{bar, x, y, z,
baar::foobar::{xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx, yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy,
zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz},
bar::*};
// nested imports with a single sub-tree.
use a::b::c::*;
use a::b::c::d;
use a::b::c::{xxx, yyy, zzz};