We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
unreachable_code
try_blocks
#![feature(try_blocks)] pub fn foo() { let _: Result<(), ()> = try { loop { // anything here } }; }
Here, the entire loop expression is reported unreachable, despite not being so. This is similar to #54165, and probably has the same underlying issue.
loop