summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/closure-move-spans.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/nll/closure-move-spans.rs')
-rw-r--r--src/test/ui/nll/closure-move-spans.rs21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/test/ui/nll/closure-move-spans.rs b/src/test/ui/nll/closure-move-spans.rs
deleted file mode 100644
index bf2431870..000000000
--- a/src/test/ui/nll/closure-move-spans.rs
+++ /dev/null
@@ -1,21 +0,0 @@
-// check that moves due to a closure capture give a special note
-
-fn move_after_move(x: String) {
- || x;
- let y = x; //~ ERROR
-}
-
-fn borrow_after_move(x: String) {
- || x;
- let y = &x; //~ ERROR
-}
-
-fn borrow_mut_after_move(mut x: String) {
- || x;
- let y = &mut x; //~ ERROR
-}
-
-fn fn_ref<F: Fn()>(f: F) -> F { f }
-fn fn_mut<F: FnMut()>(f: F) -> F { f }
-
-fn main() {}