about summary refs log tree commit diff
path: root/tests/ui/closures/print/closure-print-generic-1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/closures/print/closure-print-generic-1.rs')
-rw-r--r--tests/ui/closures/print/closure-print-generic-1.rs23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/ui/closures/print/closure-print-generic-1.rs b/tests/ui/closures/print/closure-print-generic-1.rs
new file mode 100644
index 00000000000..504b4adbeb9
--- /dev/null
+++ b/tests/ui/closures/print/closure-print-generic-1.rs
@@ -0,0 +1,23 @@
+fn to_fn_once<F: FnOnce()>(f: F) -> F {
+    f
+}
+
+fn f<T: std::fmt::Display>(y: T) {
+    struct Foo<U: std::fmt::Display> {
+        x: U,
+    };
+
+    let foo = Foo { x: "x" };
+
+    let c = to_fn_once(move || {
+        println!("{} {}", foo.x, y);
+    });
+
+    c();
+    c();
+    //~^ ERROR use of moved value
+}
+
+fn main() {
+    f("S");
+}