mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
14 lines
333 B
Rust
14 lines
333 B
Rust
//@ aux-build:issue-15318.rs
|
|
//@ ignore-cross-compile
|
|
// 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) {}
|