about summary refs log tree commit diff
path: root/tests/ui/dyn-star/async-block-dyn-star.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/dyn-star/async-block-dyn-star.rs')
-rw-r--r--tests/ui/dyn-star/async-block-dyn-star.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/dyn-star/async-block-dyn-star.rs b/tests/ui/dyn-star/async-block-dyn-star.rs
index 9bffd6c6725..db133d94c91 100644
--- a/tests/ui/dyn-star/async-block-dyn-star.rs
+++ b/tests/ui/dyn-star/async-block-dyn-star.rs
@@ -4,6 +4,6 @@
 //~^ WARN the feature `dyn_star` is incomplete
 
 static S: dyn* Send + Sync = async { 42 };
-//~^ needs to have the same ABI as a pointer
+//~^ ERROR needs to have the same ABI as a pointer
 
 pub fn main() {}