blob: cc94cc819d6655d047576adf205fc812746e1284 [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;
}