summary refs log tree commit diff
path: root/src/test/rustdoc/issue-15318-2.rs
blob: 2af811ad5bbe8de6b320ab952f7f63be278649e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
// aux-build:issue-15318.rs
// ignore-cross-compile

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) {}