We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
several control flow expressions are actually place expressions:
fn main() { let arr = [10, 20]; let arr_ref = &loop { break arr[0]; }; dbg!(arr_ref); }
i've tested if and loop, doubtless there are many more.
if
loop