diff options
| author | bors <bors@rust-lang.org> | 2016-12-06 10:54:45 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2016-12-06 10:54:45 +0000 |
| commit | 1692c0b587e1d91bb96a99f9f2588d7d2b247e3f (patch) | |
| tree | 97531974dddac60a84b7e0576382abfe9c07e6c1 /src/libsyntax | |
| parent | ff261d3a6b5964e1e3744d055238de624afc5d76 (diff) | |
| parent | 7d05d1e7f0add9e5151d48d51d92b6fb5885e257 (diff) | |
| download | rust-1692c0b587e1d91bb96a99f9f2588d7d2b247e3f.tar.gz rust-1692c0b587e1d91bb96a99f9f2588d7d2b247e3f.zip | |
Auto merge of #37973 - vadimcn:dllimport, r=alexcrichton
Implement RFC 1717 Implement the first two points from #37403. r? @alexcrichton
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index 29854260899..72ea781bc22 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -132,7 +132,6 @@ declare_features! ( (active, allocator, "1.0.0", Some(27389)), (active, fundamental, "1.0.0", Some(29635)), - (active, linked_from, "1.3.0", Some(29629)), (active, main, "1.0.0", Some(29634)), (active, needs_allocator, "1.4.0", Some(27389)), (active, on_unimplemented, "1.0.0", Some(29628)), @@ -638,12 +637,6 @@ pub const BUILTIN_ATTRIBUTES: &'static [(&'static str, AttributeType, AttributeG is an experimental feature", cfg_fn!(fundamental))), - ("linked_from", Normal, Gated(Stability::Unstable, - "linked_from", - "the `#[linked_from]` attribute \ - is an experimental feature", - cfg_fn!(linked_from))), - ("proc_macro_derive", Normal, Gated(Stability::Unstable, "proc_macro", "the `#[proc_macro_derive]` attribute \ |
