]> git.proxmox.com Git - rustc.git/blame - src/tools/rustfmt/tests/target/attrib-extern-crate.rs
New upstream version 1.52.1+dfsg1
[rustc.git] / src / tools / rustfmt / tests / target / attrib-extern-crate.rs
CommitLineData
f20569fa
XL
1// Attributes on extern crate.
2
3#[Attr1]
4extern crate Bar;
5#[Attr2]
6#[Attr2]
7extern crate Baz;
8extern crate Foo;
9
10fn foo() {
11 #[Attr1]
12 extern crate Bar;
13 #[Attr2]
14 #[Attr2]
15 extern crate Baz;
16 extern crate Foo;
17}