wasm-lang/test/t4

8 lines
83 B
Text
Raw Normal View History

2023-10-03 02:03:58 +00:00
fn main() -> i32 {
let x = {
let y = 20;
y + 10
};
x
}