mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
15 lines
287 B
Rust
15 lines
287 B
Rust
// run-pass
|
|
#![allow(unused_variables)]
|
|
fn gimme_a_raw_pointer<T>(_: *const T) { }
|
|
|
|
fn test<T>(t: T) { }
|
|
|
|
fn main() {
|
|
// Clearly `pointer` must be of type `*const ()`.
|
|
let pointer = &() as *const _;
|
|
gimme_a_raw_pointer(pointer);
|
|
|
|
let t = test as fn (i32);
|
|
t(0i32);
|
|
}
|