summary refs log tree commit diff
path: root/src/test/ui/issues/issue-41394.rs
blob: 45318f6efb892b667649cddea0593905c7c8acab (plain)
1
2
3
4
5
6
7
8
9
10
11
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() {}