2024-02-16 20:02:50 +00:00
|
|
|
//@ compile-flags: -Z mir-opt-level=3
|
|
|
|
|
//@ build-pass
|
2019-12-05 10:40:24 +03:00
|
|
|
|
|
|
|
|
// This used to ICE in const-prop
|
|
|
|
|
|
|
|
|
|
fn foo() {
|
|
|
|
|
let bar = |_| { };
|
2023-06-12 16:55:36 +08:00
|
|
|
bar("a");
|
2019-12-05 10:40:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
foo();
|
|
|
|
|
}
|