rust/tests/rustdoc-ui/issues/ice-unresolved-self-103997.rs

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

8 lines
170 B
Rust
Raw Permalink Normal View History

//@ check-pass
2024-12-08 21:39:48 -07:00
// https://github.com/rust-lang/rust/issues/103997
pub fn foo() {}
/// [`foo`](Self::foo) //~ WARNING unresolved link to `Self::foo`
pub use foo as bar;