Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
rfcs
/
rfc-2294-if-let-guard
/
loop-mutability.rs
blob: c13804e4534ea248508cf1afc64636f3dec096dd [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
#![
feature
(
if_let_guard
)]
fn
split_last
(
_
:
&())
->
Option
<(&
i32
,
&
i32
)>
{
None
}
fn
assign_twice
()
{
loop
{
match
()
{
#[
allow
(
irrefutable_let_patterns
)]
()
if
let
_
=
split_last
(&())
=>
{}
_
=>
{}
}
}
}
fn
main
()
{}