Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
consts
/
dont-ctfe-unsized-initializer.rs
blob: cca38b760dcc80dc9222a1c708c1a72777933c88 [
file
] [
log
] [
blame
]
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
()
{}