rustc/tests/crashes/128097.rs
2024-11-29 22:33:13 +01:00

7 lines
114 B
Rust

//@ known-bug: #128097
#![feature(explicit_tail_calls)]
fn f(x: &mut ()) {
let _y: String;
become f(x);
}