summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/issue-15318-2.rs
blob: f7f5052a36dd34329d3c218c0ad7a2c4fe183e7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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) {}