diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-08-14 08:26:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-14 08:26:21 -0500 |
commit | 27d082e5779904a5e68e99841ae1511ff126bacd (patch) | |
tree | 4f849c25a1366d1af526ba24d5ddedec53301e1e /components/script/lib.rs | |
parent | 8472699885fe81957dc9d183c209f3aa31f4c4c2 (diff) | |
parent | 9c8a810d6edf28661b6b970256b701a30822beef (diff) | |
download | servo-27d082e5779904a5e68e99841ae1511ff126bacd.tar.gz servo-27d082e5779904a5e68e99841ae1511ff126bacd.zip |
Auto merge of #12854 - nox:impl-trait, r=jdm
Use impl Trait syntax for Node::child_elements
<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/12854)
<!-- Reviewable:end -->
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 87abf732bc1..5ca2caa10bf 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -5,6 +5,7 @@ #![feature(as_unsafe_cell)] #![feature(borrow_state)] #![feature(box_syntax)] +#![feature(conservative_impl_trait)] #![feature(const_fn)] #![feature(core_intrinsics)] #![feature(custom_attribute)] |