about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-05-22 13:31:24 -0700
committerbors <bors@rust-lang.org>2014-05-22 13:31:24 -0700
commite402e75f4eb79af09b9451f0f232f994b3e2c998 (patch)
tree63be0957c4bb357ec3823db87e894eaafcfcba6a /src/test
parent8d50d6a93c8f408b54f887670f70726421a48f0a (diff)
parent516a177273b1f6943f63abd2a74ffa5f53542fdb (diff)
downloadrust-e402e75f4eb79af09b9451f0f232f994b3e2c998.tar.gz
rust-e402e75f4eb79af09b9451f0f232f994b3e2c998.zip
auto merge of #14350 : zwarich/rust/let-suggestion, r=pcwalton
Diffstat (limited to 'src/test')
-rw-r--r--src/test/compile-fail/borrowck-let-suggestion.rs20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/test/compile-fail/borrowck-let-suggestion.rs b/src/test/compile-fail/borrowck-let-suggestion.rs
new file mode 100644
index 00000000000..a03087f9b2d
--- /dev/null
+++ b/src/test/compile-fail/borrowck-let-suggestion.rs
@@ -0,0 +1,20 @@
+// Copyright 2014 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.
+
+fn f() {
+    let x = [1].iter(); //~ ERROR borrowed value does not live long enough
+                        //~^^ NOTE reference must be valid for the block
+                        //~^^ NOTE consider using a `let` binding to increase its lifetime
+}
+
+fn main() {
+    f();
+}
+