2014-06-06 10:04:04 -05:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
2014-07-21 17:57:14 -05:00
|
|
|
//
|
2014-06-06 10:04:04 -05:00
|
|
|
|
|
|
|
|
|
|
|
static FOO: u8 = b'\xF0';
|
2014-06-07 09:32:01 -05:00
|
|
|
static BAR: &'static [u8] = b"a\xF0\t";
|
2015-02-26 02:25:16 -06:00
|
|
|
static BAR_FIXED: &'static [u8; 3] = b"a\xF0\t";
|
2014-06-13 12:56:24 -05:00
|
|
|
static BAZ: &'static [u8] = br"a\n";
|
2014-06-06 10:04:04 -05:00
|
|
|
|
|
|
|
pub fn main() {
|
2015-02-26 02:25:16 -06:00
|
|
|
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'*' => {},
|
2014-10-09 14:17:22 -05:00
|
|
|
_ => panic!()
|
2014-06-06 10:04:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
match 100 {
|
2014-09-26 23:13:20 -05:00
|
|
|
b'a' ... b'z' => {},
|
2014-10-09 14:17:22 -05:00
|
|
|
_ => panic!()
|
2014-06-06 10:04:04 -05:00
|
|
|
}
|
2014-06-07 09:32:01 -05:00
|
|
|
|
2014-08-04 07:19:02 -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];
|
2014-06-07 09:32:01 -05:00
|
|
|
assert_eq!(b"a\
|
2014-08-04 07:19:02 -05:00
|
|
|
b", expected);
|
|
|
|
let expected: &[_] = &[97u8, 240u8, 9u8];
|
|
|
|
assert_eq!(BAR, expected);
|
2015-02-26 02:25:16 -06:00
|
|
|
assert_eq!(BAR_FIXED, expected);
|
|
|
|
assert_eq!(bar, expected);
|
|
|
|
assert_eq!(bar_fixed, expected);
|
2014-06-07 09:32:01 -05:00
|
|
|
|
2015-02-26 02:25:16 -06:00
|
|
|
let val = &[97u8, 10u8];
|
2014-08-04 07:19:02 -05:00
|
|
|
match val {
|
2014-06-07 09:32:01 -05:00
|
|
|
b"a\n" => {},
|
2014-10-09 14:17:22 -05:00
|
|
|
_ => panic!(),
|
2014-06-07 09:32:01 -05:00
|
|
|
}
|
2014-06-13 12:56:24 -05:00
|
|
|
|
2016-10-29 16:54:04 -05:00
|
|
|
let buf = vec![97u8, 98, 99, 100];
|
2015-03-09 14:19:11 -05:00
|
|
|
assert_eq!(match &buf[0..3] {
|
|
|
|
b"def" => 1,
|
|
|
|
b"abc" => 2,
|
|
|
|
_ => 3
|
|
|
|
}, 2);
|
2014-07-05 09:22:21 -05:00
|
|
|
|
2014-08-04 07:19:02 -05:00
|
|
|
let expected: &[_] = &[97u8, 92u8, 110u8];
|
|
|
|
assert_eq!(BAZ, expected);
|
|
|
|
let expected: &[_] = &[97u8, 92u8, 110u8];
|
|
|
|
assert_eq!(br"a\n", expected);
|
2014-06-13 12:56:24 -05:00
|
|
|
assert_eq!(br"a\n", b"a\\n");
|
2014-08-04 07:19:02 -05:00
|
|
|
let expected: &[_] = &[97u8, 34u8, 35u8, 35u8, 98u8];
|
|
|
|
assert_eq!(br###"a"##b"###, expected);
|
2014-06-13 12:56:24 -05:00
|
|
|
assert_eq!(br###"a"##b"###, b"a\"##b");
|
2014-06-06 10:04:04 -05:00
|
|
|
}
|