rust/tests/ui/derives/deriving-primitive.rs

6 lines
207 B
Rust
Raw Permalink Normal View History

#[derive(FromPrimitive)] //~ ERROR cannot find derive macro `FromPrimitive` in this scope
2020-01-08 17:02:10 +00:00
//~| ERROR cannot find derive macro `FromPrimitive` in this scope
enum Foo {}
fn main() {}