Skip to content

Commit 6dd3f61

Browse files
committed
convert from hard error to future-incompatible lint
1 parent 27d6b9d commit 6dd3f61

File tree

4 files changed

+33
-10
lines changed

4 files changed

+33
-10
lines changed

src/librustc/lint/builtin.rs

+7
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,12 @@ declare_lint! {
127127
"detect private items in public interfaces not caught by the old implementation"
128128
}
129129

130+
declare_lint! {
131+
pub INVALID_TYPE_PARAM_DEFAULT,
132+
Warn,
133+
"type parameter default erroneously allowed in invalid location"
134+
}
135+
130136
/// Does nothing as a lint pass, but registers some `Lint`s
131137
/// which are used by other parts of the compiler.
132138
#[derive(Copy, Clone)]
@@ -152,6 +158,7 @@ impl LintPass for HardwiredLints {
152158
TRIVIAL_CASTS,
153159
TRIVIAL_NUMERIC_CASTS,
154160
PRIVATE_IN_PUBLIC,
161+
INVALID_TYPE_PARAM_DEFAULT,
155162
CONST_ERR
156163
)
157164
}

src/librustc_lint/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,8 @@ pub fn register_builtins(store: &mut lint::LintStore, sess: Option<&Session>) {
143143
UNUSED_MUT, UNREACHABLE_CODE, UNUSED_MUST_USE,
144144
UNUSED_UNSAFE, PATH_STATEMENTS, UNUSED_ATTRIBUTES);
145145

146-
add_lint_group!(sess, "future_incompatible",
147-
PRIVATE_IN_PUBLIC);
146+
add_lint_group!(sess, FUTURE_INCOMPATIBLE,
147+
PRIVATE_IN_PUBLIC, INVALID_TYPE_PARAM_DEFAULT);
148148

149149
// We have one lint pass defined specially
150150
store.register_late_pass(sess, false, box lint::GatherNodeLevels);

src/librustc_typeck/collect.rs

+7-8
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ There are some shortcomings in this design:
6565
*/
6666

6767
use astconv::{self, AstConv, ty_of_arg, ast_ty_to_ty, ast_region_to_region};
68+
use lint;
6869
use middle::def;
6970
use middle::def_id::DefId;
7071
use constrained_type_params as ctp;
@@ -92,7 +93,6 @@ use syntax::abi;
9293
use syntax::ast;
9394
use syntax::attr;
9495
use syntax::codemap::Span;
95-
use syntax::feature_gate::{GateIssue, emit_feature_err};
9696
use syntax::parse::token::special_idents;
9797
use syntax::ptr::P;
9898
use rustc_front::hir;
@@ -1936,13 +1936,12 @@ fn get_or_create_type_parameter_def<'a,'tcx>(ccx: &CrateCtxt<'a,'tcx>,
19361936

19371937
if space != TypeSpace && default.is_some() {
19381938
if !tcx.sess.features.borrow().default_type_parameter_fallback {
1939-
emit_feature_err(&tcx.sess.parse_sess.span_diagnostic,
1940-
"default_type_parameter_fallback",
1941-
param.span,
1942-
GateIssue::Language,
1943-
"other than on a `struct` or `enum` definition, \
1944-
defaults for type parameters are experimental \
1945-
and known to be buggy");
1939+
tcx.sess.add_lint(
1940+
lint::builtin::INVALID_TYPE_PARAM_DEFAULT,
1941+
param.id,
1942+
param.span,
1943+
format!("defaults for type parameters are only allowed \
1944+
on `struct` or `enum` definitions (see issue #27336)"));
19461945
}
19471946
}
19481947

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
#![deny(future_incompatible)]
12+
#![allow(dead_code)]
13+
14+
fn avg<T=i32>(_: T) {}
15+
//~^ ERROR defaults for type parameters are only allowed
16+
//~| NOTE HARD ERROR
17+
fn main() {}

0 commit comments

Comments
 (0)