rust/tests/ui/expr-block-fn.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
141 B
Rust
Raw Normal View History

// run-pass
fn test_fn() {
fn ten() -> isize { return 10; }
2015-01-03 06:32:54 +08:00
let rs = ten;
assert_eq!(rs(), 10);
}
pub fn main() { test_fn(); }