提交 b0f880dd 编写于 作者: Z Zack M. Davis

in which leading zeroes on tuple-struct accesses are abjured

Resolves #47073.
上级 54d7285a
......@@ -2592,7 +2592,7 @@ fn parse_dot_or_call_expr_with_(&mut self, e0: P<Expr>, lo: Span) -> PResult<'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 @@ fn parse_dot_or_call_expr_with_(&mut self, e0: P<Expr>, lo: Span) -> PResult<'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);
}
}
}
......
// 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
}
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
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册