7 lines
180 B
Rust
7 lines
180 B
Rust
use std::from::From; //~ ERROR use of unstable library feature `derive_from
|
|
|
|
#[derive(From)] //~ ERROR use of unstable library feature `derive_from`
|
|
struct Foo(u32);
|
|
|
|
fn main() {}
|