mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 06:46:18 +00:00
7 lines
111 B
Rust
7 lines
111 B
Rust
// Regression test for issue #5239
|
|
|
|
fn main() {
|
|
let x = |ref x: isize| { x += 1; };
|
|
//~^ ERROR E0368
|
|
}
|