Skip to content

Commit d0610fd

Browse files
committed
Add missing newlines
1 parent bdd23bf commit d0610fd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/ui/const-eval/ref_to_float_transmute.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ type Float = f64;
2525
#[cfg(target_pointer_width="32")]
2626
type Float = f32;
2727

28-
static BAR: Float = unsafe { Foo { r: &FOO }.f };
28+
static BAR: Float = unsafe { Foo { r: &FOO }.f };

src/test/ui/const-eval/ref_to_int_match.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ type Int = u64;
2727
#[cfg(target_pointer_width="32")]
2828
type Int = u32;
2929

30-
const BAR: Int = unsafe { Foo { r: &42 }.f };
30+
const BAR: Int = unsafe { Foo { r: &42 }.f };

0 commit comments

Comments
 (0)