about summary refs log tree commit diff
diff options
context:
space:
mode:
authorcrypto-universe <ykp@protonmail.ch>2016-08-18 00:43:18 +0200
committercrypto-universe <ykp@protonmail.ch>2016-08-18 00:43:18 +0200
commited54226467f60a6ca15aabe9cc1f58763503a817 (patch)
treee9dd98c585f0916e46c4e7c6ba41d5ac4904b1d1
parentde5aaee0c5ee48a3ebaffa922846ed19321a8d2a (diff)
downloadrust-ed54226467f60a6ca15aabe9cc1f58763503a817.tar.gz
rust-ed54226467f60a6ca15aabe9cc1f58763503a817.zip
Fix tidy check.
-rw-r--r--src/test/compile-fail/E0221.rs2
1 files changed, 1 insertions, 1 deletions
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`