about summary refs log tree commit diff
path: root/tests/ui/unboxed-closures/unboxed-closures-direct-sugary-call.rs
blob: 265e8e49f0decbf5b6451c89fadc3d847da7b7f5 (plain)
1
2
3
4
5
6
7
//@ run-pass
#![allow(unused_mut)]

fn main() {
    let mut unboxed = || {};
    unboxed();
}