2019-07-26 16:54:25 -05:00
|
|
|
//@ run-pass
|
|
|
|
|
2021-07-02 23:24:47 -05:00
|
|
|
#![feature(ptr_metadata)]
|
2015-04-19 17:52:26 -05:00
|
|
|
|
|
|
|
trait Foo {
|
2024-02-06 20:42:01 -06:00
|
|
|
fn foo(&self) {} //~ WARN method `foo` is never used
|
2015-04-19 17:52:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
struct Bar;
|
|
|
|
|
|
|
|
impl Foo for Bar {}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
// Test we can turn a fat pointer to array back into a thin pointer.
|
|
|
|
let a: *const [i32] = &[1, 2, 3];
|
|
|
|
let b = a as *const [i32; 2];
|
|
|
|
unsafe {
|
2015-06-07 13:00:38 -05:00
|
|
|
assert_eq!(*b, [1, 2]);
|
2015-04-19 17:52:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Test conversion to an address (usize).
|
|
|
|
let a: *const [i32; 3] = &[1, 2, 3];
|
|
|
|
let b: *const [i32] = a;
|
2015-06-07 13:00:38 -05:00
|
|
|
assert_eq!(a as usize, b as *const () as usize);
|
2015-04-19 17:52:26 -05:00
|
|
|
|
|
|
|
// And conversion to a void pointer/address for trait objects too.
|
2019-05-28 13:47:21 -05:00
|
|
|
let a: *mut dyn Foo = &mut Bar;
|
2021-07-02 23:24:47 -05:00
|
|
|
let b = a as *mut () as usize;
|
2015-05-13 13:58:26 -05:00
|
|
|
let c = a as *const () as usize;
|
2021-07-02 23:24:47 -05:00
|
|
|
let d = a.to_raw_parts().0 as usize;
|
2015-04-19 17:52:26 -05:00
|
|
|
|
2015-06-07 13:00:38 -05:00
|
|
|
assert_eq!(b, d);
|
2021-07-02 23:24:47 -05:00
|
|
|
assert_eq!(c, d);
|
2015-04-19 17:52:26 -05:00
|
|
|
}
|