about summary refs log tree commit diff
path: root/tests/ui/higher-ranked/trait-bounds/fn-ptr.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/higher-ranked/trait-bounds/fn-ptr.rs')
-rw-r--r--tests/ui/higher-ranked/trait-bounds/fn-ptr.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/ui/higher-ranked/trait-bounds/fn-ptr.rs b/tests/ui/higher-ranked/trait-bounds/fn-ptr.rs
index 9298c10c341..7a4c15f4d4b 100644
--- a/tests/ui/higher-ranked/trait-bounds/fn-ptr.rs
+++ b/tests/ui/higher-ranked/trait-bounds/fn-ptr.rs
@@ -1,7 +1,7 @@
 //@ revisions: current next
 //@ ignore-compare-mode-next-solver (explicit revisions)
 //@[next] compile-flags: -Znext-solver
-//@[next] check-pass
+//@ check-pass
 
 fn ice()
 where
@@ -11,5 +11,4 @@ where
 
 fn main() {
     ice();
-    //[current]~^ ERROR expected a `Fn(&'w ())` closure, found `fn(&'w ())`
 }