rust/tests/rustdoc-ui/intra-doc/issue-108653-associated-items-2.rs

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

18 lines
403 B
Rust
Raw Normal View History

2023-03-03 07:54:56 -06:00
// This is ensuring that the UI output for associated items is as expected.
#![deny(rustdoc::broken_intra_doc_links)]
/// [`Trait::IDENT`]
//~^ ERROR both an associated constant and an associated type
pub trait Trait {
type IDENT;
const IDENT: usize;
}
/// [`Trait2::IDENT`]
//~^ ERROR both an associated function and an associated type
pub trait Trait2 {
type IDENT;
fn IDENT() {}
}