rust/tests/ui/rustdoc/check-doc-alias-attr-location.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
629 B
Rust
Raw Normal View History

#![crate_type = "lib"]
pub struct Bar;
pub trait Foo {
type X;
fn foo(x: u32) -> Self::X;
}
#[doc(alias = "foo")] //~ ERROR
2020-09-01 21:12:52 +00:00
extern "C" {}
#[doc(alias = "bar")] //~ ERROR
impl Bar {
#[doc(alias = "const")]
const A: u32 = 0;
}
#[doc(alias = "foobar")] //~ ERROR
impl Foo for Bar {
#[doc(alias = "assoc")] //~ ERROR
type X = i32;
fn foo(#[doc(alias = "qux")] _x: u32) -> Self::X {
//~^ ERROR
#[doc(alias = "stmt")] //~ ERROR
let x = 0;
#[doc(alias = "expr")] //~ ERROR
match x {
#[doc(alias = "arm")] //~ ERROR
_ => 0
}
2020-09-01 21:12:52 +00:00
}
}