blob: 8d733be93567e00d2d39306a8c2b57ab5501872c [file] [log] [blame] [edit]
#![crate_type = "lib"]
#![doc(as_ptr)]
//~^ ERROR unknown `doc` attribute
#[doc(as_ptr)]
//~^ ERROR unknown `doc` attribute
pub fn foo() {}
#[doc(123)]
//~^ ERROR malformed `doc` attribute
#[doc("hello", "bar")]
//~^ ERROR malformed `doc` attribute
//~| ERROR malformed `doc` attribute
#[doc(foo::bar, crate::bar::baz = "bye")]
//~^ ERROR unknown `doc` attribute
//~| ERROR unknown `doc` attribute
fn bar() {}