2019-07-02 21:30:28 +00:00
|
|
|
// build-pass (FIXME(62277): could be check-pass?)
|
2018-02-01 04:56:01 +00:00
|
|
|
|
2018-04-29 23:51:02 +00:00
|
|
|
#![feature(box_syntax)]
|
|
|
|
#![feature(box_patterns)]
|
2018-02-01 04:56:01 +00: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 07:07:31 +00:00
|
|
|
struct LovelyAmbition {
|
|
|
|
lips: usize,
|
|
|
|
fire: usize
|
|
|
|
}
|
|
|
|
|
2018-04-30 00:27:37 +00:00
|
|
|
#[derive(Clone, Copy)]
|
2018-04-29 23:40:11 +00:00
|
|
|
enum Large {
|
|
|
|
Suit { case: () }
|
|
|
|
}
|
|
|
|
|
2018-04-30 00:27:37 +00:00
|
|
|
struct Tuple(Large, ());
|
|
|
|
|
2018-02-01 04:56:01 +00: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 14:24:04 +00:00
|
|
|
let mut mut_unused_var = 1;
|
|
|
|
|
|
|
|
let (mut var, unused_var) = (1, 2);
|
|
|
|
|
2018-02-01 04:56:01 +00: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 23:40:11 +00:00
|
|
|
|
2018-05-18 07:07:31 +00:00
|
|
|
let the_spirit = LovelyAmbition { lips: 1, fire: 2 };
|
|
|
|
let LovelyAmbition { lips, fire } = the_spirit;
|
|
|
|
println!("{}", lips);
|
|
|
|
|
2018-04-29 23:51:02 +00:00
|
|
|
let bag = Large::Suit {
|
2018-04-29 23:40:11 +00:00
|
|
|
case: ()
|
|
|
|
};
|
|
|
|
|
2018-04-30 00:27:37 +00:00
|
|
|
// Plain struct
|
|
|
|
match bag {
|
|
|
|
Large::Suit { case } => {}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Referenced struct
|
2018-04-29 23:51:02 +00:00
|
|
|
match &bag {
|
2018-04-29 23:40:11 +00:00
|
|
|
&Large::Suit { case } => {}
|
|
|
|
};
|
2018-04-29 23:51:02 +00:00
|
|
|
|
2018-04-30 00:27:37 +00:00
|
|
|
// Boxed struct
|
2018-04-29 23:51:02 +00:00
|
|
|
match box bag {
|
|
|
|
box Large::Suit { case } => {}
|
|
|
|
};
|
2018-04-30 00:27:37 +00: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-02-01 04:56:01 +00:00
|
|
|
}
|