]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/feature-gates/feature-gate-async-await.rs
Stabilize futures_api
[rust.git] / src / test / ui / feature-gates / feature-gate-async-await.rs
index 7ee035644bc958e29b5374ab4d93e220090ce3f5..9cfefef4129de27e3e9e957db9099df93f6957fd 100644 (file)
@@ -1,6 +1,15 @@
 // edition:2018
 
-#![feature(futures_api)]
+struct S;
+
+impl S {
+    async fn foo() {} //~ ERROR async fn is unstable
+}
+
+trait T {
+    async fn foo(); //~ ERROR trait fns cannot be declared `async`
+    //~^ ERROR async fn is unstable
+}
 
 async fn foo() {} //~ ERROR async fn is unstable