blob: 3d88a2a50b464c5470cb7a7fcb21182d69f787df [file] [log] [blame] [edit]
//@ run-pass
pub fn main() {
struct Fun<F>(F);
let f = Fun(|x| 3*x);
let Fun(g) = f;
println!("{:?}",g(4));
}