]> git.lizzy.rs Git - rust.git/blob - src/test/ui/derives/deriving-primitive.rs
Auto merge of #97870 - eggyal:inplace_fold_spec, r=wesleywiser
[rust.git] / src / test / ui / derives / deriving-primitive.rs
1 #[derive(FromPrimitive)] //~ ERROR cannot find derive macro `FromPrimitive` in this scope
2                          //~| ERROR cannot find derive macro `FromPrimitive` in this scope
3 enum Foo {}
4
5 fn main() {}