Skip to content
New issue

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

Trait coercion may ask for a static bound in overloaded call #14959

Closed
luqmana opened this issue Jun 17, 2014 · 2 comments · Fixed by #14976
Closed

Trait coercion may ask for a static bound in overloaded call #14959

luqmana opened this issue Jun 17, 2014 · 2 comments · Fixed by #14976
Labels
A-trait-system Area: Trait system A-type-system Area: Type system

Comments

@luqmana
Copy link
Member

luqmana commented Jun 17, 2014

Similar to #11612 but seems this seems to only happen in an overloaded call?

#![feature(overloaded_calls)]

use std::ops::Fn;

trait Response {}
trait Request {}
trait Ingot<R, S> {
    fn enter(&mut self, _: &mut R, _: &mut S, a: &mut Alloy) -> Status;
}

type IoResult<T> = Result<T, ()>;
struct SendFile<'a>;
struct HelloWorld;
struct Alloy;
enum Status {
    Continue
}

impl Alloy {
    fn find<T>(&self) -> Option<T> {
        None
    }
}

impl<'a, 'b> Fn<(&'b mut Response,), IoResult<()>> for SendFile<'a> {
    /// Serve from specified path.
    fn call(&self, (_res,): (&'b mut Response,)) -> IoResult<()> {
        // Check that path exists (path has already checked for permissions)
        // Serve file
        Ok(())
    }
}

impl<Rq: Request, Rs: Response> Ingot<Rq, Rs> for HelloWorld {
    fn enter(&mut self, _req: &mut Rq, res: &mut Rs, alloy: &mut Alloy) -> Status {
        let mut send_file = alloy.find::<SendFile>().unwrap();
        send_file(res);
        Continue
    }
}

fn main() {}
a.rs:37:19: 37:22 error: value may contain references; add `'static` bound to `Rs`
a.rs:37         send_file(res);
                          ^~~
error: aborting due to previous error

Adding an explicit cast works fine.

Reported originally by zzmp on IRC:

@alexcrichton
Copy link
Member

cc #14901

@zzmp
Copy link
Contributor

zzmp commented Jun 17, 2014

Originally offending code was in this branch. It was resolved by coercing res using res as &mut Response.
The resolution is here.

The master branch will likely change, but I'll leave those two there if you think it will be helpful (though it is by no means a small, isolated example).

Hope this helps. Thanks for your help!

bors added a commit that referenced this issue Jun 17, 2014
lnicola pushed a commit to lnicola/rust that referenced this issue Jun 19, 2023
Add span to group.

This appears to fix rust-lang#14959, but I've never contributed to rust-analyzer before and there were some things that confused me:

- I had to add the `fn byte_range` method to get it to build. This was added to rust in [April](rust-lang#109002), so I don't understand why it wasn't needed until now
- When testing, I ran into the fact that rust recently updated its `METADATA_VERSION`, so I had to test this with nightly-2023-05-20. But then I noticed that rust has its own copy of `rust-analyzer`, and the metadata version bump has already been [handled there](rust-lang@60e95e7). So I guess I don't really understand the relationship between the code there and the code here.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-trait-system Area: Trait system A-type-system Area: Type system
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants