Added regression test for #53.

This commit is contained in:
defyrlt 2015-05-17 14:35:11 +03:00
parent 5286663fe2
commit 837dadd5aa

View File

@ -57,3 +57,8 @@ pub fn render<'a,
-> io::Result<()> {
render_opts(g, w, &[])
}
fn main() {
let _ = function(move || 5);
let _ = move || 42;
}