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