about summary refs log tree commit diff
path: root/tests/ui/macros/concat-bytes.rs
blob: 36227a712cc0098f3ace31958c38a19cf7ebd7aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//@ run-pass
#![feature(concat_bytes)]

fn main() {
    assert_eq!(concat_bytes!(), &[]);
    assert_eq!(
        concat_bytes!(b'A', b"BC", [68, b'E', 70], [b'G'; 1], [72; 2], [73u8; 3], [65; 0]),
        b"ABCDEFGHHIII",
    );
    assert_eq!(
        concat_bytes!(
            concat_bytes!(b"AB", b"CD"),
            concat_bytes!(b"EF", b"GH"),
        ),
        b"ABCDEFGH",
    );
}