auto merge of #13471 : Ryman/rust/feature_syntax_error, r=brson

The current error message is misleading, it asks users to add `#[feature(..)]` which ends up being treated as an outer attribute, which then has no error unless `attribute_usage` lint is enforced. The code will still fail and the user might not understand why.
This commit is contained in:
bors 2014-04-13 08:51:49 -07:00
commit 7240fad25e
2 changed files with 2 additions and 2 deletions

View File

@ -96,7 +96,7 @@ impl<'a> Context<'a> {
fn gate_feature(&self, feature: &str, span: Span, explain: &str) {
if !self.has_feature(feature) {
self.sess.span_err(span, explain);
self.sess.span_note(span, format!("add \\#[feature({})] to the \
self.sess.span_note(span, format!("add \\#![feature({})] to the \
crate attributes to enable",
feature));
}

View File

@ -3698,7 +3698,7 @@ pub fn instantiate_path(fcx: &FnCtxt,
&& !fcx.tcx().sess.features.default_type_params.get() {
fcx.tcx().sess.span_err(pth.span, "default type parameters are \
experimental and possibly buggy");
fcx.tcx().sess.span_note(pth.span, "add #[feature(default_type_params)] \
fcx.tcx().sess.span_note(pth.span, "add #![feature(default_type_params)] \
to the crate attributes to enable");
}