Skip to content

Commit eac8092

Browse files
committed
Removed trailing whitespace
1 parent 5ff7e1a commit eac8092

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/ui/intrinsics/intrinsic-volatile.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ pub fn main() {
3434
let arr: [u8; 3] = [1, 2, 3];
3535
let ptr = arr[1..].as_ptr() as *const u16;
3636
assert_eq!(unaligned_volatile_load(ptr), u16::from_ne_bytes([arr[1], arr[2]]));
37-
37+
3838
// test unaligned volatile store
3939
let ptr = arr[1..].as_ptr() as *mut u16;
4040
unaligned_volatile_store(ptr, 0);

0 commit comments

Comments
 (0)