2021-01-29 00:24:19 -06:00
|
|
|
fn main() {
|
2021-02-13 22:38:37 -06:00
|
|
|
// should hint to create an inline `const` block
|
|
|
|
// or to create a new `const` item
|
2021-01-29 00:24:19 -06:00
|
|
|
let strings: [String; 5] = [String::new(); 5];
|
|
|
|
//~^ ERROR the trait bound `String: Copy` is not satisfied
|
|
|
|
println!("{:?}", strings);
|
|
|
|
}
|