mirror of
https://github.com/rust-lang/rust.git
synced 2026-07-16 21:01:15 -04:00
15 lines
267 B
Rust
15 lines
267 B
Rust
fn main() {}
|
|
|
|
#[deprecated(
|
|
since = "since" //~ ERROR attribute items not separated with `,`
|
|
note = "note"
|
|
)]
|
|
fn f0() {}
|
|
|
|
#[link(
|
|
name = "name" //~ ERROR attribute items not separated with `,`
|
|
kind = "static"
|
|
modifiers = "modifiers"
|
|
)]
|
|
fn f1() {}
|