rust/tests/ui/mir/issue66339.rs
许杰友 Jieyou Xu (Joe) edafbaffb2
Adjust UI tests for unit_bindings
- Either explicitly annotate `let x: () = expr;` where `x` has unit
  type, or remove the unit binding to leave only `expr;` instead.
- Fix disjoint-capture-in-same-closure test
2023-06-12 20:24:48 +08:00

14 lines
163 B
Rust

// compile-flags: -Z mir-opt-level=3
// build-pass
// This used to ICE in const-prop
fn foo() {
let bar = |_| { };
bar("a");
}
fn main() {
foo();
}