mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-29 02:03:53 +00:00
10 lines
284 B
Rust
10 lines
284 B
Rust
use std::marker::SmartPointer; //~ ERROR use of unstable library feature 'derive_smart_pointer'
|
|
|
|
#[derive(SmartPointer)] //~ ERROR use of unstable library feature 'derive_smart_pointer'
|
|
#[repr(transparent)]
|
|
struct MyPointer<'a, #[pointee] T: ?Sized> {
|
|
ptr: &'a T,
|
|
}
|
|
|
|
fn main() {}
|