summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/issue-55288.rs
blob: aab2dc267d59423ad6a7dde49b021541a81ded08 (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() {}