Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
closures
/
issue-5239-1.rs
blob: 708ae34c6c6ae17ce485cf1c90d027d1be65af51 [
file
] [
log
] [
blame
] [
edit
]
// Regression test for issue #5239
fn
main
()
{
let
x
=
|
ref
x
:
isize
|
{
x
+=
1
;
};
//~^ ERROR E0368
}