diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2016-09-11 14:41:42 +0200 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2016-10-06 00:35:02 +0200 |
commit | 5f5266a3e54bff056c75e212a6c2b8d77dd49297 (patch) | |
tree | e93d7531cb477e1a9f7c7075a614d262e90d1e33 | |
parent | 896be066dd34e4d5f5f2c6425c093f5fa091401b (diff) | |
download | servo-5f5266a3e54bff056c75e212a6c2b8d77dd49297.tar.gz servo-5f5266a3e54bff056c75e212a6c2b8d77dd49297.zip |
Reorder features in script crate
-rw-r--r-- | components/script/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index a7c73205d2f..360138868cc 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -14,9 +14,9 @@ #![feature(on_unimplemented)] #![feature(optin_builtin_traits)] #![feature(plugin)] +#![feature(question_mark)] #![feature(slice_patterns)] #![feature(stmt_expr_attributes)] -#![feature(question_mark)] #![feature(try_borrow)] #![feature(try_from)] |