blob: e737ef26e9b3819822566c628bd3f2314be4e9b7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#![feature(prelude_import)]
#![no_std]
#[prelude_import]
use ::std::prelude::rust_2015::*;
#[macro_use]
extern crate std;
// check-pass
// compile-flags: -Z unpretty=expanded
fn main() { if let 0 = 1 {} }
|