2019-07-02 16:30:28 -05:00
|
|
|
// build-pass (FIXME(62277): could be check-pass?)
|
2018-01-31 22:56:01 -06:00
|
|
|
|
2018-04-29 18:51:02 -05:00
|
|
|
#![feature(box_syntax)]
|
|
|
|
#![feature(box_patterns)]
|
2018-01-31 22:56:01 -06:00
|
|
|
#![warn(unused)] // UI tests pass `-A unused` (#43896)
|
|
|
|
|
|
|
|
struct SoulHistory {
|
|
|
|
corridors_of_light: usize,
|
|
|
|
hours_are_suns: bool,
|
|
|
|
endless_and_singing: bool
|
|
|
|
}
|
|
|
|
|
2018-05-18 02:07:31 -05:00
|
|
|
struct LovelyAmbition {
|
|
|
|
lips: usize,
|
|
|
|
fire: usize
|
|
|
|
}
|
|
|
|
|
2018-04-29 19:27:37 -05:00
|
|
|
#[derive(Clone, Copy)]
|
2018-04-29 18:40:11 -05:00
|
|
|
enum Large {
|
|
|
|
Suit { case: () }
|
|
|
|
}
|
|
|
|
|
2018-04-29 19:27:37 -05:00
|
|
|
struct Tuple(Large, ());
|
|
|
|
|
2018-01-31 22:56:01 -06:00
|
|
|
fn main() {
|
|
|
|
let i_think_continually = 2;
|
|
|
|
let who_from_the_womb_remembered = SoulHistory {
|
|
|
|
corridors_of_light: 5,
|
|
|
|
hours_are_suns: true,
|
|
|
|
endless_and_singing: true
|
|
|
|
};
|
|
|
|
|
2018-05-11 09:24:04 -05:00
|
|
|
let mut mut_unused_var = 1;
|
|
|
|
|
|
|
|
let (mut var, unused_var) = (1, 2);
|
2019-09-16 13:49:48 -05:00
|
|
|
// NOTE: `var` comes after `unused_var` lexicographically yet the warning
|
|
|
|
// for `var` will be emitted before the one for `unused_var`. We use an
|
|
|
|
// `IndexMap` to ensure this is the case instead of a `BTreeMap`.
|
2018-05-11 09:24:04 -05:00
|
|
|
|
2018-01-31 22:56:01 -06:00
|
|
|
if let SoulHistory { corridors_of_light,
|
|
|
|
mut hours_are_suns,
|
|
|
|
endless_and_singing: true } = who_from_the_womb_remembered {
|
|
|
|
hours_are_suns = false;
|
|
|
|
}
|
2018-04-29 18:40:11 -05:00
|
|
|
|
2018-05-18 02:07:31 -05:00
|
|
|
let the_spirit = LovelyAmbition { lips: 1, fire: 2 };
|
|
|
|
let LovelyAmbition { lips, fire } = the_spirit;
|
|
|
|
println!("{}", lips);
|
|
|
|
|
2018-04-29 18:51:02 -05:00
|
|
|
let bag = Large::Suit {
|
2018-04-29 18:40:11 -05:00
|
|
|
case: ()
|
|
|
|
};
|
|
|
|
|
2018-04-29 19:27:37 -05:00
|
|
|
// Plain struct
|
|
|
|
match bag {
|
|
|
|
Large::Suit { case } => {}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Referenced struct
|
2018-04-29 18:51:02 -05:00
|
|
|
match &bag {
|
2018-04-29 18:40:11 -05:00
|
|
|
&Large::Suit { case } => {}
|
|
|
|
};
|
2018-04-29 18:51:02 -05:00
|
|
|
|
2018-04-29 19:27:37 -05:00
|
|
|
// Boxed struct
|
2018-04-29 18:51:02 -05:00
|
|
|
match box bag {
|
|
|
|
box Large::Suit { case } => {}
|
|
|
|
};
|
2018-04-29 19:27:37 -05:00
|
|
|
|
|
|
|
// Tuple with struct
|
|
|
|
match (bag,) {
|
|
|
|
(Large::Suit { case },) => {}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Slice with struct
|
|
|
|
match [bag] {
|
|
|
|
[Large::Suit { case }] => {}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Tuple struct with struct
|
|
|
|
match Tuple(bag, ()) {
|
|
|
|
Tuple(Large::Suit { case }, ()) => {}
|
|
|
|
};
|
2018-01-31 22:56:01 -06:00
|
|
|
}
|