From 88e4e2a2089992ec6e33e29d66986f7574412dbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Esteban=20K=C3=BCber?= Date: Thu, 10 Oct 2019 19:20:51 -0700 Subject: [PATCH] fix compile-fail test --- src/test/compile-fail/chalkify/impl_wf.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/compile-fail/chalkify/impl_wf.rs b/src/test/compile-fail/chalkify/impl_wf.rs index 96b1b2533712..6bb4cf86e798 100644 --- a/src/test/compile-fail/chalkify/impl_wf.rs +++ b/src/test/compile-fail/chalkify/impl_wf.rs @@ -25,6 +25,7 @@ impl Bar for Option { impl Bar for f32 { //~^ ERROR the trait bound `f32: Foo` is not satisfied type Item = f32; + //~^ ERROR the trait bound `f32: Foo` is not satisfied } trait Baz where U: Foo { }