Skip to content

Commit a9d7997

Browse files
committed
Update the intrinsic-move-val.rs test to reflect its newer signature.
1 parent 4a5fb4b commit a9d7997

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/run-pass/intrinsic-move-val.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ use std::mem::{self, transmute};
2020
mod rusti {
2121
extern "rust-intrinsic" {
2222
pub fn init<T>() -> T;
23-
pub fn move_val_init<T>(dst: &mut T, src: T);
23+
pub fn move_val_init<T>(dst: *mut T, src: T);
2424
}
2525
}
2626

0 commit comments

Comments
 (0)