Files
rust/tests/ui/feature-gates/feature-gate-derive-from.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
180 B
Rust
Raw Normal View History

use std::from::From; //~ ERROR use of unstable library feature `derive_from
2025-08-04 17:32:22 +02:00
#[derive(From)] //~ ERROR use of unstable library feature `derive_from`
struct Foo(u32);
fn main() {}