rust/tests/rustdoc/issue-15318-2.rs

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

13 lines
258 B
Rust
Raw Normal View History

// aux-build:issue-15318.rs
// ignore-cross-compile
#![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) {}