The following compiles fine, even though the discriminants are different types (I know that the annotations currently do nothing). ``` rust enum Foo { A = 1i64, B = 2u8 } fn main() {} ```