]> git.lizzy.rs Git - rust.git/blob - tests/ui/derives/deriving-primitive.rs
Rollup merge of #106664 - chenyukang:yukang/fix-106597-remove-lseek, r=cuviper
[rust.git] / tests / 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() {}