about summary refs log tree commit diff
path: root/tests/ui/consts/dont-ctfe-unsized-initializer.rs
blob: cca38b760dcc80dc9222a1c708c1a72777933c88 (plain)
1
2
3
4
5
6
7
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() {}