]> git.lizzy.rs Git - rust.git/blob - src/test/ui/derives/deriving-primitive.rs
Rollup merge of #103694 - WaffleLapkin:mask_doc_example, r=scottmcm
[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() {}