]> git.proxmox.com Git - rustc.git/blame - library/std/src/sys_common/os_str_bytes/tests.rs
New upstream version 1.55.0+dfsg1
[rustc.git] / library / std / src / sys_common / os_str_bytes / tests.rs
CommitLineData
136023e0
XL
1use super::*;
2
3#[test]
4fn slice_debug_output() {
5 let input = Slice::from_u8_slice(b"\xF0hello,\tworld");
6 let expected = r#""\xF0hello,\tworld""#;
7 let output = format!("{:?}", input);
8
9 assert_eq!(output, expected);
10}