blob: 6cd1f144359baf135fa4ebbf08205edd835172ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
type Guilty = bool;
type FineDollars = u32;
struct Verdict(Guilty, Option<FineDollars>);
fn main() {
let justice = Verdict(true, Some(2718));
let _condemned = justice.00;
//~^ ERROR no field `00` on type `Verdict`
let _punishment = justice.001;
//~^ ERROR no field `001` on type `Verdict`
}
|