2015-06-25 20:29:54 -05:00
|
|
|
// Imports.
|
|
|
|
|
|
|
|
// Long import.
|
|
|
|
use syntax::ast::{ItemForeignMod, ItemImpl, ItemMac, ItemMod, ItemStatic, ItemDefaultImpl};
|
2015-09-04 11:09:05 -05:00
|
|
|
use exceedingly::looooooooooooooooooooooooooooooooooooooooooooooooooooooooooong::import::path::{ItemA, ItemB};
|
|
|
|
use exceedingly::loooooooooooooooooooooooooooooooooooooooooooooooooooooooong::import::path::{ItemA, ItemB};
|
2015-06-25 20:29:54 -05:00
|
|
|
|
|
|
|
use list::{
|
|
|
|
// Some item
|
|
|
|
SomeItem /* Comment */, /* Another item */ AnotherItem /* Another Comment */, // Last Item
|
|
|
|
LastItem
|
|
|
|
};
|
|
|
|
|
|
|
|
use test::{ Other /* C */ , /* A */ self /* B */ };
|
|
|
|
|
|
|
|
use syntax::{self};
|
|
|
|
use {/* Pre-comment! */
|
|
|
|
Foo, Bar /* comment */};
|
|
|
|
use Foo::{Bar, Baz};
|
|
|
|
pub use syntax::ast::{Expr_, Expr, ExprAssign, ExprCall, ExprMethodCall, ExprPath};
|
|
|
|
use syntax::some::{};
|
|
|
|
|
|
|
|
mod Foo {
|
|
|
|
pub use syntax::ast::{
|
|
|
|
ItemForeignMod,
|
|
|
|
ItemImpl,
|
|
|
|
ItemMac,
|
|
|
|
ItemMod,
|
|
|
|
ItemStatic,
|
|
|
|
ItemDefaultImpl
|
|
|
|
};
|
|
|
|
|
|
|
|
mod Foo2 {
|
|
|
|
pub use syntax::ast::{ItemForeignMod, ItemImpl, ItemMac, ItemMod, ItemStatic, self, ItemDefaultImpl};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test() {
|
|
|
|
use Baz::*;
|
|
|
|
use Qux;
|
|
|
|
}
|
2015-07-25 16:10:48 -05:00
|
|
|
|
|
|
|
// Simple imports
|
|
|
|
use foo::bar::baz as baz ;
|
|
|
|
use bar::quux as kaas;
|
|
|
|
use foo;
|
2015-09-26 01:12:25 -05:00
|
|
|
|
|
|
|
// With aliases.
|
|
|
|
use foo::{self as bar, baz};
|
|
|
|
use foo::{self as bar};
|
|
|
|
use foo::{qux as bar};
|
|
|
|
use foo::{baz, qux as bar};
|
2016-06-08 06:00:11 -05:00
|
|
|
|
|
|
|
// With absolute paths
|
|
|
|
use ::foo;
|
|
|
|
use ::foo::{Bar};
|
|
|
|
use ::foo::{Bar, Baz};
|
|
|
|
use ::{Foo};
|
|
|
|
use ::{Bar, Baz};
|