mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 02:25:51 +00:00
7 lines
100 B
Rust
7 lines
100 B
Rust
// run-pass
|
|
// edition: 2021
|
|
|
|
fn main() {
|
|
assert_eq!(b"test\0", c"test".to_bytes_with_nul());
|
|
}
|