about summary refs log tree commit diff
path: root/tests/ui/nll/issue-55288.rs
blob: 3fe6db97e0b233833e4db3a39bd99e67f55a05a1 (plain)
1
2
3
4
5
6
7
8
9
//@ check-pass

struct Slice(&'static [&'static [u8]]);

static MAP: Slice = Slice(&[
    b"CloseEvent" as &'static [u8],
]);

fn main() {}