rust/tests/target/imports.rs
Nick Cameron e7489356c6 Format glob imports
Fixes #1356
2017-03-08 10:12:42 +13:00

65 lines
1.7 KiB
Rust

// rustfmt-normalize_comments: true
// rustfmt-error_on_line_overflow: false
// Imports.
// Long import.
use syntax::ast::{ItemForeignMod, ItemImpl, ItemMac, ItemMod, ItemStatic, ItemDefaultImpl};
use exceedingly::looooooooooooooooooooooooooooooooooooooooooooooooooooooooooong::import::path::{ItemA,
ItemB};
use exceedingly::loooooooooooooooooooooooooooooooooooooooooooooooooooooooong::import::path::{ItemA,
ItemB};
use list::{// Some item
SomeItem, // Comment
// Another item
AnotherItem, // Another Comment
// Last Item
LastItem};
use test::{/* A */ self /* B */, Other /* C */};
use syntax;
use {/* Pre-comment! */ Foo, Bar /* comment */};
use Foo::{Bar, Baz};
pub use syntax::ast::{Expr_, Expr, ExprAssign, ExprCall, ExprMethodCall, ExprPath};
use self;
use std::io;
use std::io;
mod Foo {
pub use syntax::ast::{ItemForeignMod, ItemImpl, ItemMac, ItemMod, ItemStatic, ItemDefaultImpl};
mod Foo2 {
pub use syntax::ast::{self, ItemForeignMod, ItemImpl, ItemMac, ItemMod, ItemStatic,
ItemDefaultImpl};
}
}
fn test() {
use Baz::*;
use Qux;
}
// 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};
// With absolute paths
use foo;
use foo::Bar;
use foo::{Bar, Baz};
use Foo;
use {Bar, Baz};
// spaces used to cause glob imports to disappear (#1356)
use super::*;
use foo::issue_1356::*;