Closed
Description
spawned off of #55223 (comment)
This example is causing an error in NLL:
struct Slice(&'static [&'static [u8]]);
static MAP: Slice = Slice(&[
b"CloseEvent" as &'static [u8],
]);
but this one does not cause an error:
struct Slice(&'static [&'static [u8]]);
static MAP: Slice = Slice(&[
b"CloseEvent",
]);