fd36b3a4a8
move derive_smart_pointer into removed set
9 lines
288 B
Rust
9 lines
288 B
Rust
use std::marker::CoercePointee; //~ ERROR use of unstable library feature 'derive_coerce_pointee'
|
|
|
|
#[derive(CoercePointee)] //~ ERROR use of unstable library feature 'derive_coerce_pointee'
|
|
#[repr(transparent)]
|
|
struct MyPointer<'a, #[pointee] T: ?Sized> {
|
|
ptr: &'a T,
|
|
}
|
|
|
|
fn main() {}
|