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

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

14 lines
331 B
Rust
Raw Normal View History

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