### Code ```Rust fn main() { loop 'a: { return; } } ``` ### Current output ```Shell error: block label not supported here --> src/main.rs:2:10 | 2 | loop 'a: { return; } | ^^^ not supported here ``` ### Desired output ```Shell error: misplaced loop label --> src/main.rs:2:10 | 2 | loop 'a: { return; } | ^^^ not supported here help: change this to `'a: loop {` ``` ### Rust Version 1.85.0 <!-- TRIAGEBOT_START --> <!-- TRIAGEBOT_ASSIGN_START --> <!-- TRIAGEBOT_ASSIGN_DATA_START$${"user":"zachs18"}$$TRIAGEBOT_ASSIGN_DATA_END --> <!-- TRIAGEBOT_ASSIGN_END --> <!-- TRIAGEBOT_END -->