-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Type parameter default not respected with enums #24857
Comments
This may actually just be "RFC 213 hasn't been implemented yet". Any idea, @nikomatsakis? |
Item 2 from RFC 213 hasn't been implemented yet, so default type parameters aren't used as fallbacks for inference. The same issue occurs with structs: use std::marker::PhantomData;
struct Foo<T = ()>(PhantomData<T>);
fn f<S>(_: Foo<S>) {}
fn main() {
f(Foo(PhantomData));
} > rustc foo.rs
foo.rs:8:5: 8:6 error: unable to infer enough type information about `_`; type annotations required [E0282]
foo.rs:8 f(Foo(PhantomData));
^
error: aborting due to previous error CC #21939. |
Is this the same or different issue? fn foo<T = i32>(x: Option<T>) { }
fn main() {
foo(None)
}
|
I believe that's the same issue. |
Here is another context where default values could be useful: trait Foo {
fn foo() -> Self;
}
impl Foo for f32 {
fn foo() -> f32 {
42.0
}
}
impl Foo for f64 {
fn foo() -> f64 {
42.0
}
}
fn bar<T: Foo=f64>() -> T { // “=f64” has no effect.
T::foo()
}
fn main() {
let _: f64 = bar(); // The type annotation is still needed.
} Regards, |
I currently have a PR open that implements default type parameter fallback, if anyone is so inclined any test cases would be appreciated. PR: #26870 |
Triage: still true today |
I feel like this is expected behavior at the moment. At least until we settle the story around default type parameter fallback, which is more the purview of #27336. I'd be inclined to close this myself. |
Closing as expected behavior per @nikomatsakis's comment. |
The text was updated successfully, but these errors were encountered: