blob: 81d054b3a1e078ceadedcff341c4d21a93bebd44 [file] [log] [blame]
#[allow(invalid_type_param_default)]
fn foo<T, U = u64>() -> (T, U) {
panic!()
}
fn main() {
foo(); //~ ERROR type annotations needed
}