mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-02 11:44:28 +00:00
18 lines
232 B
Rust
18 lines
232 B
Rust
// 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;
|
|
}
|