diff options
author | Rohit Burra <iamrohit7@gmail.com> | 2016-10-30 13:55:31 +0530 |
---|---|---|
committer | Rohit Burra <iamrohit7@gmail.com> | 2016-11-01 11:35:39 +0530 |
commit | c4cb3f345bfba617fd090454b842437014dd269d (patch) | |
tree | e7cc7f8b1ece846d8720c8b6d1e759441f3b668c /python/tidy/servo_tidy_tests/lib.rs | |
parent | 877d7166dbd86b6e1c6e57aa32874af99fafd53f (diff) | |
download | servo-c4cb3f345bfba617fd090454b842437014dd269d.tar.gz servo-c4cb3f345bfba617fd090454b842437014dd269d.zip |
Tests alphabetical ordering of #![feature(...)]
Diffstat (limited to 'python/tidy/servo_tidy_tests/lib.rs')
-rw-r--r-- | python/tidy/servo_tidy_tests/lib.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/python/tidy/servo_tidy_tests/lib.rs b/python/tidy/servo_tidy_tests/lib.rs new file mode 100644 index 00000000000..4ca395d8e6d --- /dev/null +++ b/python/tidy/servo_tidy_tests/lib.rs @@ -0,0 +1,14 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#![feature(def)] +#![feature(abc)] + +#![feature(abc, def, ghi)] +#![feature(aaa)] + +#![feature(def, ghi, abc)] + +#![feature(ghi)] +#![feature(abd, hef)] |