Remove full path

This commit is contained in:
Guillaume Gomez 2015-06-01 10:46:28 +02:00
parent 9eb416b8a4
commit 42c5c982c4

View file

@ -188,7 +188,7 @@ struct X { x: (), }
struct Foo { a: u8 }
impl ::std::ops::Index<u8> for Foo {
impl Index<u8> for Foo {
type Output = u8;
fn index<'a>(&'a self, idx: u8) -> &'a u8 { &self.a }