diff options
author | Pavel Sergeev <sergeev.pavel.al@gmail.com> | 2017-07-16 13:26:08 +0300 |
---|---|---|
committer | Pavel Sergeev <sergeev.pavel.al@gmail.com> | 2017-07-20 00:44:59 +0300 |
commit | c225847a81588f7d709f5028cb24944077b4b548 (patch) | |
tree | 49c9a369f90cb8a7660fd25c4ba47a7494b14ad3 /python/tidy/servo_tidy_tests/rust_tidy.rs | |
parent | 17f99e2a7bb0d7eec167eac952f12a7feafd647d (diff) | |
download | servo-c225847a81588f7d709f5028cb24944077b4b548.tar.gz servo-c225847a81588f7d709f5028cb24944077b4b548.zip |
tidy: add extra space after keyword check
Diffstat (limited to 'python/tidy/servo_tidy_tests/rust_tidy.rs')
-rw-r--r-- | python/tidy/servo_tidy_tests/rust_tidy.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/python/tidy/servo_tidy_tests/rust_tidy.rs b/python/tidy/servo_tidy_tests/rust_tidy.rs index f50cbaa5ef7..bed4664a279 100644 --- a/python/tidy/servo_tidy_tests/rust_tidy.rs +++ b/python/tidy/servo_tidy_tests/rust_tidy.rs @@ -72,4 +72,10 @@ impl test { } else { // Should not trigger "false" } // Should not trigger + + if true { // Double space after keyword + 42 + } else { + let xif = 42 in { xif } // Should not trigger + } } |