rust/tests/ui/consts/dont-ctfe-unsized-initializer.rs
2025-03-03 23:09:42 +00:00

7 lines
226 B
Rust

static S: str = todo!();
//~^ ERROR the size for values of type `str` cannot be known at compilation time
const C: str = todo!();
//~^ ERROR the size for values of type `str` cannot be known at compilation time
fn main() {}