Skip to content

Allow omitting ‘static in const and static references #406

@petrochenkov

Description

@petrochenkov

Why are 'static lifetimes required to be written explicitly in const and static references?

const MY_STRING: &'static str = "Hello world!";
const MY_ARRAY_REF: &'static [int, ..1000] = &[0, ..1000];

If I understand the motivation correctly, the types should be written there explicitly for the similar reasons as for function declarations - they represent interfaces and shouldn't change silently after changes to initializer or function body.
But the lifetimes for const/static references are always 'static and will not change, can't they be elided?

These explicit 'statics were relatively annoying before, with constant strings, but now they are even more annoying, because after introduction of const (#398) constant arrays have to be written through references.

const MY_ARRAY1: [int, ..1000] = [0, ..1000]; // Not OK, rvalue arrays are bad
static MY_ARRAY2: [int, ..1000] = [0, ..1000]; // Not OK, `static` arrays can't be used in constant expressions
const MY_ARRAY3: &'static [int, ..1000] = &[0, ..1000]; // OK, but more verbose than necessary

The same snippets after the change:

// The lifetimes are inferred
const MY_STRING: &str = "Hello world!";
const MY_ARRAY: &[int, ..1000] = &[0, ..1000];

The question was asked on discuss forum, but without success.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions