```rust fn foo() { 'deny_panic: { } // do not put a ; here or will not work } ``` This do not work: ```rust fn foo() { let x = 'deny_panic: { } } ```
This do not work: