Skip to content

Commit

Permalink
Auto merge of #5647 - est31:master, r=Mark-Simulacrum
Browse files Browse the repository at this point in the history
Remove quote feature use

Quote is being removed see rust-lang/rust#46849. Follow up of @Manishearth 's #4838 which removed usages of the feature so now we only have to remove `quote` from the `#![feature]` attrs.
  • Loading branch information
bors committed Jun 23, 2018
2 parents 41e32a4 + e93ad66 commit 5845464
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/testsuite/cross_compile.rs
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ fn plugin_deps() {
.file(
"src/lib.rs",
r#"
#![feature(plugin_registrar, quote, rustc_private)]
#![feature(plugin_registrar, rustc_private)]
extern crate rustc_plugin;
extern crate syntax;
Expand Down Expand Up @@ -334,7 +334,7 @@ fn plugin_to_the_max() {
.file(
"src/lib.rs",
r#"
#![feature(plugin_registrar, quote, rustc_private)]
#![feature(plugin_registrar, rustc_private)]
extern crate rustc_plugin;
extern crate syntax;
Expand Down

0 comments on commit 5845464

Please sign in to comment.