2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2012-02-05 12:08:14 -06:00
|
|
|
// Test a rather underspecified example:
|
2020-03-27 15:56:19 -05:00
|
|
|
#![allow(unused_braces)]
|
2015-03-22 15:13:15 -05:00
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2015-02-01 11:44:15 -06:00
|
|
|
let f = {|i| i};
|
2015-01-25 15:05:03 -06:00
|
|
|
assert_eq!(f(2), 2);
|
|
|
|
assert_eq!(f(5), 5);
|
2012-02-05 12:08:14 -06:00
|
|
|
}
|