diff options
author | bors-servo <servo-ops@mozilla.com> | 2020-04-10 00:37:54 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-10 00:37:54 -0400 |
commit | 9fd668488e0986a36fe55f7fd023588993674ae6 (patch) | |
tree | 9447e161231c94f7740be0d7763242df6e7d7c4c /python/tidy/servo_tidy_tests/script_thread.rs | |
parent | 455a99ca8db4426c2f0f33b92846f0d8902a62b7 (diff) | |
parent | 1c0549ce7fd748511d6200e622eddf800b3e9ca4 (diff) | |
download | servo-9fd668488e0986a36fe55f7fd023588993674ae6.tar.gz servo-9fd668488e0986a36fe55f7fd023588993674ae6.zip |
Auto merge of #26071 - servo:rustup, r=nox
Upgrade to rustc 1.44.0-nightly (42abbd887 2020-04-07)
~Blocked on https://github.com/rust-lang/rust/issues/70280~
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() { - => {} - } -} |