Skip to content

Commit 9736d32

Browse files
committed
Remove leading newlines
1 parent 8423e00 commit 9736d32

File tree

9 files changed

+3
-12
lines changed

9 files changed

+3
-12
lines changed

src/rustc/rustc.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
fn main() {
32
// Pull in jemalloc when enabled.
43
//

src/test/incremental/change_name_of_static_in_fn.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
// revisions:rpass1 rpass2 rpass3
32

43
// See issue #57692.
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
pub fn foo() {
32
println!("bar");
43
}

src/test/run-make-fulldeps/lto-dylib-dep/main.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
extern crate a_dylib;
32

43
fn main() {

src/test/run-pass/coherence/auxiliary/re_rebalance_coherence_lib.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
2-
pub trait Backend{}
1+
pub trait Backend {}
32
pub trait SupportsDefaultKeyword {}
43

54
impl SupportsDefaultKeyword for Postgres {}

src/test/ui/coherence/auxiliary/re_rebalance_coherence_lib.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
2-
pub trait Backend{}
1+
pub trait Backend {}
32
pub trait SupportsDefaultKeyword {}
43

54
impl SupportsDefaultKeyword for Postgres {}

src/test/ui/e0119/conflict-with-std.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
use std::marker::PhantomData;
32
use std::convert::{TryFrom, AsRef};
43

src/test/ui/feature-gates/auxiliary/re_rebalance_coherence_lib.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
2-
pub trait Backend{}
1+
pub trait Backend {}
32
pub trait SupportsDefaultKeyword {}
43

54
impl SupportsDefaultKeyword for Postgres {}

src/test/ui/mod-subitem-as-enum-variant.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
mod Mod {
32
pub struct FakeVariant<T>(pub T);
43
}

0 commit comments

Comments
 (0)