mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-10 23:06:23 +00:00
9 lines
129 B
Rust
9 lines
129 B
Rust
// run-pass
|
|
// edition: 2021
|
|
|
|
#![feature(c_str_literals)]
|
|
|
|
fn main() {
|
|
assert_eq!(b"test\0", c"test".to_bytes_with_nul());
|
|
}
|