-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
in which leading zeroes on tuple-struct accesses are abjured
Resolves #47073.
- Loading branch information
1 parent
54d7285
commit b0f880d
Showing
3 changed files
with
48 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
src/test/ui/issue-47073-zero-padded-tuple-struct-indices.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
} |
14 changes: 14 additions & 0 deletions
14
src/test/ui/issue-47073-zero-padded-tuple-struct-indices.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
|