]> git.proxmox.com Git - rustc.git/blobdiff - src/test/compile-fail/feature-gate-unboxed-closures-method-calls.rs
New upstream version 1.12.0+dfsg1
[rustc.git] / src / test / compile-fail / feature-gate-unboxed-closures-method-calls.rs
index eea1f61d6397faa423f0446ecddc3bcbe62d2705..253d1633b1c4eb95c3e12036bf3312a3cbcff354 100644 (file)
@@ -11,9 +11,9 @@
 #![allow(dead_code)]
 
 fn foo<F: Fn()>(mut f: F) {
-    f.call(()); //~ ERROR explicit use of unboxed closure method `call`
-    f.call_mut(()); //~ ERROR explicit use of unboxed closure method `call_mut`
-    f.call_once(()); //~ ERROR explicit use of unboxed closure method `call_once`
+    f.call(()); //~ ERROR use of unstable library feature 'fn_traits'
+    f.call_mut(()); //~ ERROR use of unstable library feature 'fn_traits'
+    f.call_once(()); //~ ERROR use of unstable library feature 'fn_traits'
 }
 
 fn main() {}