mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
19 lines
300 B
Plaintext
19 lines
300 B
Plaintext
#[prelude_import]
|
|
use ::std::prelude::rust_2015::*;
|
|
#[macro_use]
|
|
extern crate std;
|
|
//@ compile-flags: -Zunpretty=hir
|
|
//@ check-pass
|
|
|
|
|
|
|
|
fn foo(x:
|
|
Option<u32>) {
|
|
let Some(_) = x else
|
|
{
|
|
|
|
{ ::std::rt::begin_panic("explicit panic") }
|
|
};
|
|
}
|
|
fn main() { }
|