2015-04-06 17:58:23 -05:00
|
|
|
// aux-build:issue-15318.rs
|
2015-04-22 17:22:36 -05:00
|
|
|
// ignore-cross-compile
|
2023-09-27 19:22:18 -05:00
|
|
|
// https://github.com/rust-lang/rust/issues/15318
|
2015-04-06 17:58:23 -05:00
|
|
|
|
2023-09-27 18:51:21 -05:00
|
|
|
#![crate_name="issue_15318"]
|
2015-04-06 17:58:23 -05:00
|
|
|
#![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) {}
|