mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-27 12:48:20 +00:00
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() {}
|