Update the intrinsic-move-val.rs test to reflect its newer signature.

This commit is contained in:
Felix S. Klock II 2015-07-21 14:31:51 +02:00
parent 4a5fb4bd2a
commit a9d79978b6

View file

@ -20,7 +20,7 @@ use std::mem::{self, transmute};
mod rusti {
extern "rust-intrinsic" {
pub fn init<T>() -> T;
pub fn move_val_init<T>(dst: &mut T, src: T);
pub fn move_val_init<T>(dst: *mut T, src: T);
}
}