We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
todo!()
impl Trait
return position impl Trait is not coerced from !, leading to the following code to error:
!
trait MyTrait {} fn my_function() -> impl MyTrait { todo!() }
this code currently reports "the trait MyTrait is not implemented for ()". note that this code does work:
MyTrait
()
trait MyTrait {} fn my_function<T: MyTrait>() -> T { todo!() }
The text was updated successfully, but these errors were encountered:
this issue already exists, and i didnt find that at first. sorry!
Sorry, something went wrong.
No branches or pull requests
return position
impl Trait
is not coerced from!
, leading to the following code to error:this code currently reports "the trait
MyTrait
is not implemented for()
". note that this code does work:The text was updated successfully, but these errors were encountered: