summaryrefslogtreecommitdiffstats
path: root/tests/ui/expr-block-fn.rs
blob: 1cac2cac0ac5dcce24b071bd9f7565d68f2dd236 (plain)
1
2
3
4
5
6
7
8
9
// run-pass

fn test_fn() {
    fn ten() -> isize { return 10; }
    let rs = ten;
    assert_eq!(rs(), 10);
}

pub fn main() { test_fn(); }