mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-27 11:05:06 +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());
|
|
}
|