in which leading zeroes on tuple-struct accesses are abjured

Resolves #47073.
This commit is contained in:
Zack M. Davis 2017-12-30 21:16:16 -08:00
parent 54d7285a34
commit b0f880ddd9
3 changed files with 48 additions and 3 deletions

View File

@ -2592,7 +2592,7 @@ impl<'a> Parser<'a> {
token::Ident(..) => {
e = self.parse_dot_suffix(e, lo)?;
}
token::Literal(token::Integer(n), suf) => {
token::Literal(token::Integer(index_ident), suf) => {
let sp = self.span;
// A tuple index may not have a suffix
@ -2602,16 +2602,25 @@ impl<'a> Parser<'a> {
hi = self.span;
self.bump();
let index = n.as_str().parse::<usize>().ok();
let invalid_msg = "invalid tuple or struct index";
let index = index_ident.as_str().parse::<usize>().ok();
match index {
Some(n) => {
if n.to_string() != index_ident.as_str() {
let mut err = self.struct_span_err(self.prev_span, invalid_msg);
err.span_suggestion(self.prev_span,
"try simplifying the index",
n.to_string());
err.emit();
}
let id = respan(dot_span.to(hi), n);
let field = self.mk_tup_field(e, id);
e = self.mk_expr(lo.to(hi), field, ThinVec::new());
}
None => {
let prev_span = self.prev_span;
self.span_err(prev_span, "invalid tuple or tuple struct index");
self.span_err(prev_span, invalid_msg);
}
}
}

View File

@ -0,0 +1,22 @@
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
type Guilty = bool;
type FineDollars = u32;
struct Verdict(Guilty, Option<FineDollars>);
fn main() {
let justice = Verdict(true, Some(2718));
let _condemned = justice.00;
//~^ ERROR invalid tuple or struct index
let _punishment = justice.001;
//~^ ERROR invalid tuple or struct index
}

View File

@ -0,0 +1,14 @@
error: invalid tuple or struct index
--> $DIR/issue-47073-zero-padded-tuple-struct-indices.rs:18:30
|
18 | let _condemned = justice.00;
| ^^ help: try simplifying the index: `0`
error: invalid tuple or struct index
--> $DIR/issue-47073-zero-padded-tuple-struct-indices.rs:20:31
|
20 | let _punishment = justice.001;
| ^^^ help: try simplifying the index: `1`
error: aborting due to 2 previous errors