1 2 3 4 5 6 7 8 9 10 11 12
//@ run-pass fn foo() -> i32 { const { let x = 5 + 10; x / 3 } } fn main() { assert_eq!(5, foo()); }