rust/tests/ui/issues/issue-31260.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
240 B
Rust
Raw Normal View History

// check-pass
#![allow(dead_code)]
pub struct Struct<K: 'static> {
pub field: K,
}
static STRUCT: Struct<&'static [u8]> = Struct {
field: {&[1]}
};
static STRUCT2: Struct<&'static [u8]> = Struct {
field: &[1]
};
fn main() {}