]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issue-47073-zero-padded-tuple-struct-indices.rs
in which leading zeroes on tuple-struct accesses are abjured
[rust.git] / src / test / ui / issue-47073-zero-padded-tuple-struct-indices.rs
1 // Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 type Guilty = bool;
12 type FineDollars = u32;
13
14 struct Verdict(Guilty, Option<FineDollars>);
15
16 fn main() {
17     let justice = Verdict(true, Some(2718));
18     let _condemned = justice.00;
19     //~^ ERROR invalid tuple or struct index
20     let _punishment = justice.001;
21     //~^ ERROR invalid tuple or struct index
22 }