mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 11:32:29 +00:00
10 lines
140 B
Rust
10 lines
140 B
Rust
//@ check-pass
|
|
|
|
struct Slice(&'static [&'static [u8]]);
|
|
|
|
static MAP: Slice = Slice(&[
|
|
b"CloseEvent" as &'static [u8],
|
|
]);
|
|
|
|
fn main() {}
|