Files
zig/test/cases/compile_errors
Andrew Kelley 41bf81dc32 Revert "Treat blocks with "return" as "noreturn""
This reverts commit 135b91aecd.

"endsWithBreak()" is not a meaningful question to ask and should not be
used this way. A simple example that defeats this logic is:

```zig
export fn entry() void {
    outer: {
        {
            break :outer;
        }
        return;
    }
}
```
2022-06-06 11:31:54 -07:00
..