]> git.lizzy.rs Git - rust.git/commitdiff
clean tests/ui/literals.rs
authorLuis de Bethencourt <luisbg@osg.samsung.com>
Thu, 11 May 2017 11:43:13 +0000 (12:43 +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/lint_pass.rs
tests/ui/literals.rs

index 5b65a5c3a26da34ea6b564f6a9e15af93d127eea..3dbd672fc5a8d1257d203afe6103fc3089847073 100644 (file)
@@ -11,7 +11,6 @@
 declare_lint! { GOOD_LINT, Warn, "good lint" }
 declare_lint! { MISSING_LINT, Warn, "missing lint" }
 
-
 pub struct Pass;
 
 impl LintPass for Pass {
@@ -23,5 +22,3 @@ fn get_lints(&self) -> LintArray {
 fn main() {
     let _ = MISSING_LINT;
 }
-
-
index e4cee81d53f0c2ee890a135df9b3d5f5f22b1637..527a96b755e06de722eaebbe92a94cf8b3a20197 100644 (file)
@@ -28,11 +28,6 @@ fn main() {
     let ok10 = 0_i64;
     let fail8 = 0123;
 
-
-
-
-
-
     let ok11 = 0o123;
     let ok12 = 0b101010;
 }