summary refs log tree commit diff
path: root/src/test/ui/purity-infer.rs
blob: dc0eb89bfa207790b36fd046506817dc270df93b (plain)
1
2
3
4
5
6
// run-pass

fn something<F>(f: F) where F: FnOnce() { f(); }
pub fn main() {
    something(|| println!("hi!") );
}