rust/tests/rustdoc/primitive-raw-pointer-link-...

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

16 lines
342 B
Rust
Raw Permalink Normal View History

//@ aux-build:issue-15318.rs
//@ ignore-cross-compile
2023-09-28 08:22:18 +08:00
// https://github.com/rust-lang/rust/issues/15318
#![crate_name="issue_15318_2"]
#![no_std]
extern crate issue_15318;
pub use issue_15318::ptr;
//@ !has issue_15318_2/fn.bar.html \
// '//*[@href="primitive.pointer.html"]' \
// '*mut T'
pub fn bar<T>(ptr: *mut T) {}