From b518f2332e9ef7df78196df6401c676bb62d9d74 Mon Sep 17 00:00:00 2001 From: Padraic Fanning Date: Fri, 19 Feb 2021 16:07:00 -0500 Subject: [PATCH] Add 82073 Issue: rust-lang/rust#82073 --- ices/82073.rs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 ices/82073.rs diff --git a/ices/82073.rs b/ices/82073.rs new file mode 100644 index 00000000..95a19757 --- /dev/null +++ b/ices/82073.rs @@ -0,0 +1,8 @@ +#![feature(let_chains)] +#[async_std::main] +async fn main() -> Result<()> { + if let Some(_) = 2 && let Some(sixteen) = 16 { + isize::from_str_radix("A", sixteen)?; + } + Ok(()) +}