summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/attrib-extern-crate.rs
blob: ed64a0aeb0710110b5819d5b629dbf00bf2abc4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Attributes on extern crate.

#[Attr1]
extern crate Bar;
#[Attr2]
#[Attr2]
extern crate Baz;
extern crate Foo;

fn foo() {
    #[Attr1]
    extern crate Bar;
    #[Attr2]
    #[Attr2]
    extern crate Baz;
    extern crate Foo;
}