]> git.lizzy.rs Git - rust.git/commitdiff
clean tests/ui/precedence.rs
authorLuis de Bethencourt <luisbg@osg.samsung.com>
Thu, 11 May 2017 14:32:42 +0000 (15:32 +0100)
committerLuis de Bethencourt <luisbg@osg.samsung.com>
Thu, 11 May 2017 15:22:32 +0000 (16:22 +0100)
Cleaning the empty lines for clarity.

tests/ui/partialeq_ne_impl.rs
tests/ui/precedence.rs
tests/ui/precedence.stderr

index 9ee1f48b01c59c43999e00adae8ef713cc5c58b2..aadbd8d693a26b3ecfeabf674d62d5581e06126a 100644 (file)
@@ -9,7 +9,6 @@
 impl PartialEq for Foo {
     fn eq(&self, _: &Foo) -> bool { true }
     fn ne(&self, _: &Foo) -> bool { false }
-
 }
 
 fn main() {}
index 1c6019fdecf1474a56dee584fd58dc9c1601b45d..c37769d816e546941226d1f08921dcafdcef8c7a 100644 (file)
@@ -6,34 +6,15 @@
 #[allow(eq_op)]
 fn main() {
     1 << 2 + 3;
-
-
     1 + 2 << 3;
-
-
     4 >> 1 + 1;
-
-
     1 + 3 >> 2;
-
-
     1 ^ 1 - 1;
-
-
     3 | 2 - 1;
-
-
     3 & 5 - 2;
-
-
-
     -1i32.abs();
-
-
     -1f32.abs();
 
-
-
     // These should not trigger an error
     let _ = (-1i32).abs();
     let _ = (-1f32).abs();
index 9dd86d191814fc0d464b77f6f1fece23b8bd9b8e..6090be0ab0f341cf439a2a82410dc16fb9c6cae9 100644 (file)
@@ -11,51 +11,51 @@ note: lint level defined here
   |        ^^^^^^^^^^
 
 error: operator precedence can trip the unwary
 --> $DIR/precedence.rs:11:5
-   |
-11 |     1 + 2 << 3;
-   |     ^^^^^^^^^^ help: consider parenthesizing your expression `(1 + 2) << 3`
--> $DIR/precedence.rs:9:5
+  |
+9 |     1 + 2 << 3;
+  |     ^^^^^^^^^^ help: consider parenthesizing your expression `(1 + 2) << 3`
 
 error: operator precedence can trip the unwary
-  --> $DIR/precedence.rs:14:5
+  --> $DIR/precedence.rs:10:5
    |
-14 |     4 >> 1 + 1;
+10 |     4 >> 1 + 1;
    |     ^^^^^^^^^^ help: consider parenthesizing your expression `4 >> (1 + 1)`
 
 error: operator precedence can trip the unwary
-  --> $DIR/precedence.rs:17:5
+  --> $DIR/precedence.rs:11:5
    |
-17 |     1 + 3 >> 2;
+11 |     1 + 3 >> 2;
    |     ^^^^^^^^^^ help: consider parenthesizing your expression `(1 + 3) >> 2`
 
 error: operator precedence can trip the unwary
-  --> $DIR/precedence.rs:20:5
+  --> $DIR/precedence.rs:12:5
    |
-20 |     1 ^ 1 - 1;
+12 |     1 ^ 1 - 1;
    |     ^^^^^^^^^ help: consider parenthesizing your expression `1 ^ (1 - 1)`
 
 error: operator precedence can trip the unwary
-  --> $DIR/precedence.rs:23:5
+  --> $DIR/precedence.rs:13:5
    |
-23 |     3 | 2 - 1;
+13 |     3 | 2 - 1;
    |     ^^^^^^^^^ help: consider parenthesizing your expression `3 | (2 - 1)`
 
 error: operator precedence can trip the unwary
-  --> $DIR/precedence.rs:26:5
+  --> $DIR/precedence.rs:14:5
    |
-26 |     3 & 5 - 2;
+14 |     3 & 5 - 2;
    |     ^^^^^^^^^ help: consider parenthesizing your expression `3 & (5 - 2)`
 
 error: unary minus has lower precedence than method call
-  --> $DIR/precedence.rs:30:5
+  --> $DIR/precedence.rs:15:5
    |
-30 |     -1i32.abs();
+15 |     -1i32.abs();
    |     ^^^^^^^^^^^ help: consider adding parentheses to clarify your intent `-(1i32.abs())`
 
 error: unary minus has lower precedence than method call
-  --> $DIR/precedence.rs:33:5
+  --> $DIR/precedence.rs:16:5
    |
-33 |     -1f32.abs();
+16 |     -1f32.abs();
    |     ^^^^^^^^^^^ help: consider adding parentheses to clarify your intent `-(1f32.abs())`
 
 error: aborting due to 9 previous errors