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

'static lifetime annotations ignored on slices #11640

Closed
sfackler opened this issue Jan 18, 2014 · 3 comments
Closed

'static lifetime annotations ignored on slices #11640

sfackler opened this issue Jan 18, 2014 · 3 comments
Labels
A-lifetimes Area: Lifetimes / regions

Comments

@sfackler
Copy link
Member

I would expect this to compile but it doesn't:

struct Foo {
    f: &'static [int]
}

fn main() {
    Foo {
        f: &'static [10]
    };
}
test.rs:7:12: 7:25 error: cannot infer an appropriate lifetime for automatic coercion due to conflicting requirements
test.rs:7         f: &'static [10]
                     ^~~~~~~~~~~~~
test.rs:6:5: 6:8 note: first, the lifetime cannot outlive the statement at 6:4...
test.rs:6     Foo {
              ^~~
test.rs:7:12: 7:25 note: ...so that reference does not outlive borrowed content
test.rs:7         f: &'static [10]
                     ^~~~~~~~~~~~~
note: but, the lifetime must be valid for the static lifetime...
test.rs:7:12: 7:25 note: ...so that expression is assignable (expected `&'static [int]` but found `&[int]`)
test.rs:7         f: &'static [10]
                     ^~~~~~~~~~~~~
error: aborting due to previous error
task 'rustc' failed at 'explicit failure', /build/rust-git/src/rust/src/libsyntax/diagnostic.rs:75
task '<main>' failed at 'explicit failure', /build/rust-git/src/rust/src/librustc/lib.rs:448

cc @nikomatsakis

@nikomatsakis
Copy link
Contributor

Indeed, we currently seem to accept explicit lifetime parameters on
slice expressions but completely ignore them.

@huonw
Copy link
Member

huonw commented Jan 27, 2014

cc #11641

@sfackler
Copy link
Member Author

sfackler commented Jul 5, 2014

Expression lifetime annotations have been removed from the language.

@sfackler sfackler closed this as completed Jul 5, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-lifetimes Area: Lifetimes / regions
Projects
None yet
Development

No branches or pull requests

3 participants