summaryrefslogtreecommitdiffstats
path: root/src/test/ui/regions/regions-implied-bounds-projection-gap-hr-1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/regions/regions-implied-bounds-projection-gap-hr-1.rs')
-rw-r--r--src/test/ui/regions/regions-implied-bounds-projection-gap-hr-1.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/ui/regions/regions-implied-bounds-projection-gap-hr-1.rs b/src/test/ui/regions/regions-implied-bounds-projection-gap-hr-1.rs
index c1dab6086..110635203 100644
--- a/src/test/ui/regions/regions-implied-bounds-projection-gap-hr-1.rs
+++ b/src/test/ui/regions/regions-implied-bounds-projection-gap-hr-1.rs
@@ -19,7 +19,8 @@ trait Trait2<'a, 'b> {
// since for it to be WF, we would need to know that `'y: 'x`, but we
// do not infer that.
fn callee<'x, 'y, T>(t: &'x dyn for<'z> Trait1< <T as Trait2<'y, 'z>>::Foo >)
- //~^ the trait bound `for<'z> T: Trait2<'y, 'z>` is not satisfied
+ //~^ ERROR the trait bound `for<'z> T: Trait2<'y, 'z>` is not satisfied
+ //~| ERROR the trait bound `for<'z> T: Trait2<'y, 'z>` is not satisfied
{
}