index
:
rust
this commit
auto
automation/bors/try
automation/bors/try-merge
beta
cargo_update
lcnr/rustc-dev-guide
master
perf-tmp
stable
try
try-perf
https://github.com/rust-lang/rust
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
test
/
ui
/
borrowck
/
borrowck-init-in-called-fn-expr.rs
blob: e6476b9c1bef797e6a4163b9212c0790ae5963e4 (
plain
)
1
2
3
4
5
6
7
fn
main
()
{
let
j
=
||
->
isize
{
let
i
:
isize
;
i
//~ ERROR E0381
};
j
();
}