blob: 45318f6efb892b667649cddea0593905c7c8acab [file] [log] [blame]
enum Foo {
A = "" + 1
//~^ ERROR binary operation `+` cannot be applied to type `&str`
}
enum Bar {
A = Foo::A as isize
//~^ ERROR evaluation of constant value failed
}
fn main() {}