2019-05-15 14:03:44 -05:00
|
|
|
#![feature(prelude_import)]
|
|
|
|
#![no_std]
|
|
|
|
#[prelude_import]
|
2021-02-17 08:52:31 -06:00
|
|
|
use ::std::prelude::rust_2015::*;
|
2019-05-15 14:03:44 -05:00
|
|
|
#[macro_use]
|
|
|
|
extern crate std;
|
2022-01-18 16:38:17 -06:00
|
|
|
// check-pass
|
2019-05-15 14:03:44 -05:00
|
|
|
// compile-flags: -Z unpretty=expanded
|
|
|
|
|
2021-12-01 13:45:14 -06:00
|
|
|
fn main() { if let 0 = 1 {} }
|