]> git.lizzy.rs Git - rust.git/blob - tests/target/attrib-extern-crate.rs
Merge pull request #3522 from topecongiro/issue-3521
[rust.git] / tests / target / attrib-extern-crate.rs
1 // Attributes on extern crate.
2
3 #[Attr1]
4 extern crate Bar;
5 #[Attr2]
6 #[Attr2]
7 extern crate Baz;
8 extern crate Foo;
9
10 fn foo() {
11     #[Attr1]
12     extern crate Bar;
13     #[Attr2]
14     #[Attr2]
15     extern crate Baz;
16     extern crate Foo;
17 }