We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcae782 commit 48a023cCopy full SHA for 48a023c
src/librustc/middle/resolve_lifetime.rs
@@ -507,7 +507,7 @@ impl<'a> LifetimeContext<'a> {
507
EarlyScope(_, lifetimes, s) |
508
LateScope(lifetimes, s) => {
509
if let Some((_, lifetime_def)) = search_lifetimes(lifetimes, lifetime) {
510
- self.sess.span_warn(
+ self.sess.span_err(
511
lifetime.span,
512
&format!("lifetime name `{}` shadows another \
513
lifetime name that is already in scope",
@@ -516,10 +516,6 @@ impl<'a> LifetimeContext<'a> {
516
lifetime_def.span,
517
&format!("shadowed lifetime `{}` declared here",
518
token::get_name(lifetime.name)));
519
- self.sess.span_note(
520
- lifetime.span,
521
- "shadowed lifetimes are deprecated \
522
- and will become a hard error before 1.0");
523
return;
524
}
525
0 commit comments