summaryrefslogtreecommitdiffstats
path: root/tests/ui/for/issue-20605.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/for/issue-20605.rs')
-rw-r--r--tests/ui/for/issue-20605.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/for/issue-20605.rs b/tests/ui/for/issue-20605.rs
index 50d4c3fdd..8ae9494fa 100644
--- a/tests/ui/for/issue-20605.rs
+++ b/tests/ui/for/issue-20605.rs
@@ -1,5 +1,5 @@
// revisions: current next
-//[next] compile-flags: -Ztrait-solver=next
+//[next] compile-flags: -Znext-solver
fn changer<'a>(mut things: Box<dyn Iterator<Item=&'a mut u8>>) {
for item in *things { *item = 0 }
@@ -13,7 +13,7 @@ fn changer<'a>(mut things: Box<dyn Iterator<Item=&'a mut u8>>) {
//[next]~| ERROR the type `Option<<<dyn Iterator<Item = &'a mut u8> as IntoIterator>::IntoIter as Iterator>::Item>` is not well-formed
//[next]~| ERROR the size for values of type `<<dyn Iterator<Item = &'a mut u8> as IntoIterator>::IntoIter as Iterator>::Item` cannot be known at compilation time
//[next]~| ERROR type `<<dyn Iterator<Item = &'a mut u8> as IntoIterator>::IntoIter as Iterator>::Item` cannot be dereferenced
- // FIXME(-Ztrait-solver=next): these error messages are horrible and have to be
+ // FIXME(-Znext-solver): these error messages are horrible and have to be
// improved before we stabilize the new solver.
}