What is `(br 0)` branching too? ``` (module (func $if (result i32) (local $i i32) (if (i32.const 1) (br 0) ) (get_local $i) ) (export "if" $if) ) ``` There are no `blocks` or `loops` so there are no labels.