rust/tests/rustdoc/intra-doc-crate/self.rs

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

10 lines
322 B
Rust
Raw Normal View History

2020-11-30 02:49:44 +08:00
//@ aux-build:self.rs
//@ build-aux-docs
2020-11-30 02:49:44 +08:00
extern crate cross_crate_self;
//@ has self/struct.S.html '//a[@href="struct.S.html#method.f"]' "Self::f"
//@ has self/struct.S.html '//a[@href="struct.S.html"]' "Self"
//@ has self/struct.S.html '//a[@href="../cross_crate_self/index.html"]' "crate"
2020-11-30 02:49:44 +08:00
pub use cross_crate_self::S;