Skip to content

Commit 48a023c

Browse files
committed
Convert lifetime shadowing into a hard error, as promised.
1 parent bcae782 commit 48a023c

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/librustc/middle/resolve_lifetime.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ impl<'a> LifetimeContext<'a> {
507507
EarlyScope(_, lifetimes, s) |
508508
LateScope(lifetimes, s) => {
509509
if let Some((_, lifetime_def)) = search_lifetimes(lifetimes, lifetime) {
510-
self.sess.span_warn(
510+
self.sess.span_err(
511511
lifetime.span,
512512
&format!("lifetime name `{}` shadows another \
513513
lifetime name that is already in scope",
@@ -516,10 +516,6 @@ impl<'a> LifetimeContext<'a> {
516516
lifetime_def.span,
517517
&format!("shadowed lifetime `{}` declared here",
518518
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");
523519
return;
524520
}
525521

0 commit comments

Comments
 (0)