You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
372 B
19 lines
372 B
#![deny(unused_qualifications)]
|
|
|
|
#[macro_use]
|
|
extern crate num_derive;
|
|
use num::FromPrimitive;
|
|
use num::ToPrimitive;
|
|
|
|
#[derive(FromPrimitive, ToPrimitive)]
|
|
pub enum SomeEnum {
|
|
A = 1,
|
|
}
|
|
|
|
#[test]
|
|
fn test_unused_qualifications() {
|
|
assert!(SomeEnum::from_u64(1).is_some());
|
|
assert!(SomeEnum::from_i64(-1).is_none());
|
|
assert!(SomeEnum::A.to_i64().is_some());
|
|
}
|