wasm-lang/test/t4
2023-10-02 19:03:58 -07:00

7 lines
83 B
Text

fn main() -> i32 {
let x = {
let y = 20;
y + 10
};
x
}