Remove unnecessary empty lines

This commit is contained in:
Guillaume Gomez 2015-08-26 14:28:42 +02:00
parent dfb0677bee
commit 805e4e6fd1

View File

@ -1988,7 +1988,6 @@ unsafe impl Foo { }
// converting it to this will fix it
impl Foo { }
```
"##,
E0198: r##"
@ -2005,7 +2004,6 @@ unsafe impl !Clone for Foo { }
// this will compile
impl !Clone for Foo { }
```
"##,
E0199: r##"
@ -2023,7 +2021,6 @@ unsafe impl Bar for Foo { }
// this will compile
impl Bar for Foo { }
```
"##,
E0200: r##"
@ -2041,7 +2038,6 @@ impl Bar for Foo { }
// this will compile
unsafe impl Bar for Foo { }
```
"##,
E0201: r##"