From 6eb9f95cce4d6cb285d45763a252fec545927b2b Mon Sep 17 00:00:00 2001 From: Daniel Reiter Horn Date: Wed, 30 Jan 2019 22:22:44 -0800 Subject: [PATCH] fix some nitpicks in the type system --- src/bin/integration_tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/integration_tests.rs b/src/bin/integration_tests.rs index 289728cf..834204af 100755 --- a/src/bin/integration_tests.rs +++ b/src/bin/integration_tests.rs @@ -1240,7 +1240,7 @@ fn test_empty18() { } pub struct SoonErrorReader(&'static[u8], bool); -impl Read for SoonErrorReader { +impl io::Read for SoonErrorReader { fn read(&mut self, data:&mut [u8]) -> io::Result { let first = self.1; self.1 = false;