Skip to content

Commit 42c5c98

Browse files
Remove full path
1 parent 9eb416b commit 42c5c98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc/diagnostics.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ use std::ops::Index;
188188
189189
struct Foo { a: u8 }
190190
191-
impl ::std::ops::Index<u8> for Foo {
191+
impl Index<u8> for Foo {
192192
type Output = u8;
193193
194194
fn index<'a>(&'a self, idx: u8) -> &'a u8 { &self.a }

0 commit comments

Comments
 (0)