From ed54226467f60a6ca15aabe9cc1f58763503a817 Mon Sep 17 00:00:00 2001 From: crypto-universe Date: Thu, 18 Aug 2016 00:43:18 +0200 Subject: [PATCH] Fix tidy check. --- src/test/compile-fail/E0221.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/compile-fail/E0221.rs b/src/test/compile-fail/E0221.rs index c67bfb822c0..65105458040 100644 --- a/src/test/compile-fail/E0221.rs +++ b/src/test/compile-fail/E0221.rs @@ -18,7 +18,7 @@ trait Foo { trait Bar : Foo { type A: T2; fn do_something() { - let _: Self::A; + let _: Self::A; //~^ ERROR E0221 //~| NOTE ambiguous associated type `A` //~| NOTE associated type `Self` could derive from `Foo` -- 2.44.0