summaryrefslogtreecommitdiffstats
path: root/tests/ui/artificial-block.rs
blob: 2e383e1a7c685d0317d28ced00e0b6960a3cbc93 (plain)
1
2
3
4
5
// run-pass

fn f() -> isize { { return 3; } }

pub fn main() { assert_eq!(f(), 3); }