summaryrefslogtreecommitdiffstats
path: root/src/test/ui/rfc-2005-default-binding-mode/for.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/rfc-2005-default-binding-mode/for.rs')
-rw-r--r--src/test/ui/rfc-2005-default-binding-mode/for.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/test/ui/rfc-2005-default-binding-mode/for.rs b/src/test/ui/rfc-2005-default-binding-mode/for.rs
new file mode 100644
index 000000000..d6c5a13b1
--- /dev/null
+++ b/src/test/ui/rfc-2005-default-binding-mode/for.rs
@@ -0,0 +1,9 @@
+struct Foo {}
+
+pub fn main() {
+ let mut tups = vec![(Foo {}, Foo {})];
+ // The below desugars to &(ref n, mut m).
+ for (n, mut m) in &tups {
+ //~^ ERROR cannot move out of a shared reference
+ }
+}