]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-concat_bytes.rs
parser will not give wrong help message for 'public'
[rust.git] / src / test / ui / feature-gates / feature-gate-concat_bytes.rs
1 fn main() {
2     let a = concat_bytes!(b'A', b"BC"); //~ ERROR use of unstable library feature 'concat_bytes'
3     assert_eq!(a, &[65, 66, 67]);
4 }