blob: 683c4874e8c204b1cb153fc28d3d546a648c94bc [file] [log] [blame]
//@ run-pass
fn foo<T>() -> T { loop {} }
fn test() {
let ref mut a: &mut dyn FnMut((i8,), i16) = foo();
a((0,), 0);
}
fn main() {
let _ = test;
}