mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-05 03:24:06 +03:00
9 lines
182 B
Rust
9 lines
182 B
Rust
#![crate_type = "lib"]
|
|
|
|
#[doc(123)]
|
|
//~^ ERROR malformed `doc` attribute
|
|
#[doc("hello", "bar")]
|
|
//~^ ERROR malformed `doc` attribute
|
|
//~| ERROR malformed `doc` attribute
|
|
fn bar() {}
|