Extent pretty-print test

This commit is contained in:
Aaron Hill 2020-02-19 11:05:31 -05:00
parent 1b681d6652
commit 37c2c38aeb
No known key found for this signature in database
GPG Key ID: B4087E510E98B164

View File

@ -24,5 +24,14 @@ fn if_let() {
if let Some(_) = Some(true) { }
}
#[cfg(FALSE)]
fn let_attr_if() {
let _ = #[attr] if let _ = 0 { };
let _ = #[attr] if true { };
let _ = #[attr] if let _ = 0 { } else { };
let _ = #[attr] if true { } else { };
}
fn main() { }