blob: 9b3eb7f05ded4467965b36602cc0df1d71a4efd9 [file] [log] [blame]
#![feature(nll)]
// run-pass
struct Slice(&'static [&'static [u8]]);
static MAP: Slice = Slice(&[
b"CloseEvent" as &'static [u8],
]);
fn main() {}