diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2020-04-08 15:57:49 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2020-04-08 15:59:17 +0200 |
commit | 4227425c1e6374857b3d881a1d3963be27141576 (patch) | |
tree | a5a1e372ff0ceda3a71e1e20a4267cbe89dde05e /python/tidy/servo_tidy_tests/script_thread.rs | |
parent | 651b087155c09301f6762b7b58b14be8f6334ccf (diff) | |
download | servo-4227425c1e6374857b3d881a1d3963be27141576.tar.gz servo-4227425c1e6374857b3d881a1d3963be27141576.zip |
Remove the lint added in https://github.com/servo/servo/pull/14589
Per https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=a8a5a716b3bdf52fa7960a1e4ee89add
it looks like the drop order of temporaries was changed at some point and this pattern is no longer problematic.
Diffstat (limited to 'python/tidy/servo_tidy_tests/script_thread.rs')
-rw-r--r-- | python/tidy/servo_tidy_tests/script_thread.rs | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/python/tidy/servo_tidy_tests/script_thread.rs b/python/tidy/servo_tidy_tests/script_thread.rs deleted file mode 100644 index 5dbeaec0e17..00000000000 --- a/python/tidy/servo_tidy_tests/script_thread.rs +++ /dev/null @@ -1,18 +0,0 @@ -fn main() { - // This should trigger an error. - match self.documents.borrow_mut() { - _ => {} - } - // This should trigger an error. - match self.documents.borrow() { - _ => {} - } - // This should not trigger an error. - match { self.documents.borrow().find_window(id) } { - => {} - } - // This should not trigger an error. - match self.documents_status.borrow() { - => {} - } -} |