diff options
| author | memoryruins <memoryruinsmusic@gmail.com> | 2018-08-14 10:25:54 -0400 |
|---|---|---|
| committer | memoryruins <memoryruinsmusic@gmail.com> | 2018-08-14 10:25:54 -0400 |
| commit | a7e877ebdd0c0dc7141b8bb898dd4aa4196f8c5f (patch) | |
| tree | b6d474522b6141d02c893151575fb50eab47480d | |
| parent | 5bb923988f949639f11dba0c1ab1980fe8dfec3d (diff) | |
| download | rust-a7e877ebdd0c0dc7141b8bb898dd4aa4196f8c5f.tar.gz rust-a7e877ebdd0c0dc7141b8bb898dd4aa4196f8c5f.zip | |
Add regression test for issue #48697
#48697
| -rw-r--r-- | src/test/ui/nll/issue-48697.rs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/test/ui/nll/issue-48697.rs b/src/test/ui/nll/issue-48697.rs new file mode 100644 index 00000000000..69ff82e16a1 --- /dev/null +++ b/src/test/ui/nll/issue-48697.rs @@ -0,0 +1,24 @@ +// Copyright 2018 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +// Regression test for #48697 + +// compile-pass + +#![feature(nll)] + +fn foo(x: &i32) -> &i32 { + let z = 4; + let f = &|y| y; + let k = f(&z); + f(x) +} + +fn main() {} |
