rust/tests/ui/rfc-2497-if-let-chains/ast-pretty-check.stdout

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
206 B
Plaintext
Raw Normal View History

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