rust/tests/ui/array-slice-vec/byte-literals.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

68 lines
1.7 KiB
Rust
Raw Normal View History

// run-pass
2014-07-21 17:57:14 -05:00
//
2014-06-06 10:04:04 -05:00
static FOO: u8 = b'\xF0';
static BAR: &'static [u8] = b"a\xF0\t";
static BAR_FIXED: &'static [u8; 3] = b"a\xF0\t";
static BAZ: &'static [u8] = br"a\n";
2014-06-06 10:04:04 -05:00
pub fn main() {
let bar: &'static [u8] = b"a\xF0\t";
let bar_fixed: &'static [u8; 3] = b"a\xF0\t";
2014-06-06 10:04:04 -05:00
assert_eq!(b'a', 97u8);
assert_eq!(b'\n', 10u8);
assert_eq!(b'\r', 13u8);
assert_eq!(b'\t', 9u8);
assert_eq!(b'\\', 92u8);
assert_eq!(b'\'', 39u8);
assert_eq!(b'\"', 34u8);
assert_eq!(b'\0', 0u8);
assert_eq!(b'\xF0', 240u8);
assert_eq!(FOO, 240u8);
match 42 {
b'*' => {},
_ => panic!()
2014-06-06 10:04:04 -05:00
}
match 100 {
b'a' ..= b'z' => {},
_ => panic!()
2014-06-06 10:04:04 -05:00
}
let expected: &[_] = &[97u8, 10u8, 13u8, 9u8, 92u8, 39u8, 34u8, 0u8, 240u8];
assert_eq!(b"a\n\r\t\\\'\"\0\xF0", expected);
let expected: &[_] = &[97u8, 98u8];
assert_eq!(b"a\
b", expected);
let expected: &[_] = &[97u8, 240u8, 9u8];
assert_eq!(BAR, expected);
assert_eq!(BAR_FIXED, expected);
assert_eq!(bar, expected);
assert_eq!(bar_fixed, expected);
let val = &[97u8, 10u8];
match val {
b"a\n" => {},
_ => panic!(),
}
let buf = vec![97u8, 98, 99, 100];
assert_eq!(match &buf[0..3] {
b"def" => 1,
b"abc" => 2,
_ => 3
}, 2);
2014-07-05 09:22:21 -05:00
let expected: &[_] = &[97u8, 92u8, 110u8];
assert_eq!(BAZ, expected);
let expected: &[_] = &[97u8, 92u8, 110u8];
assert_eq!(br"a\n", expected);
assert_eq!(br"a\n", b"a\\n");
let expected: &[_] = &[97u8, 34u8, 35u8, 35u8, 98u8];
assert_eq!(br###"a"##b"###, expected);
assert_eq!(br###"a"##b"###, b"a\"##b");
2014-06-06 10:04:04 -05:00
}