mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 04:23:37 +00:00
7 lines
114 B
Rust
7 lines
114 B
Rust
//@ known-bug: #128097
|
|
#![feature(explicit_tail_calls)]
|
|
fn f(x: &mut ()) {
|
|
let _y: String;
|
|
become f(x);
|
|
}
|