]> git.lizzy.rs Git - rust.git/commitdiff
Remove trailing whitespace
authorDavid Ross <daboross@daboross.net>
Sun, 16 Feb 2020 01:17:09 +0000 (17:17 -0800)
committerDavid Ross <daboross@daboross.net>
Sun, 16 Feb 2020 03:51:02 +0000 (19:51 -0800)
src/test/ui/parser/issue-35813-postfix-after-cast.rs

index 0083a475ddfba255f3dd6abe9b84b4975d8640f7..d04a092e93b00a312e238293c9d36d95cfc69b58 100644 (file)
@@ -22,10 +22,10 @@ pub fn index_after_cast_to_index() {
 
 pub fn cast_after_cast() {
     if 5u64 as i32 as u16 == 0u16 {
-        
+
     }
     if 5u64: u64: u64 == 0u64 {
-       
+
     }
     let _ = 5u64: u64: u64 as u8 as i8 == 9i8;
     let _ = 0i32: i32: i32;
@@ -107,7 +107,7 @@ pub fn cast_then_call() {
 pub fn cast_to_fn_should_work() {
     let drop_ptr = drop as fn(u8);
     drop as fn(u8);
-    drop_ptr: fn(u8); 
+    drop_ptr: fn(u8);
 }
 
 pub fn parens_after_cast_error() {