12 lines
200 B
Rust
12 lines
200 B
Rust
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() {}
|