mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
15 lines
303 B
Rust
15 lines
303 B
Rust
// unit-test: SimplifyLocals-before-const-prop
|
|
|
|
fn map(x: Option<Box<()>>) -> Option<Box<()>> {
|
|
match x {
|
|
None => None,
|
|
Some(x) => Some(x),
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
map(None);
|
|
}
|
|
|
|
// EMIT_MIR simplify_locals_removes_unused_discriminant_reads.map.SimplifyLocals-before-const-prop.diff
|