blob: 1b35bb185ed4811d9bd68b8f12357ae8c7204a6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// aux-build:issue-15318.rs
// ignore-cross-compile
// 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) {}
|