2023-07-21 15:59:28 +00:00
|
|
|
static _MAYBE_STRINGS: [Option<String>; 5] = [None; 5];
|
|
|
|
//~^ ERROR the trait bound `String: Copy` is not satisfied
|
|
|
|
|
2021-01-29 06:24:19 +00:00
|
|
|
fn main() {
|
2021-02-14 04:38:37 +00:00
|
|
|
// should hint to create an inline `const` block
|
|
|
|
// or to create a new `const` item
|
2023-07-21 15:59:28 +00:00
|
|
|
let _strings: [String; 5] = [String::new(); 5];
|
|
|
|
//~^ ERROR the trait bound `String: Copy` is not satisfied
|
|
|
|
let _maybe_strings: [Option<String>; 5] = [None; 5];
|
2021-01-29 06:24:19 +00:00
|
|
|
//~^ ERROR the trait bound `String: Copy` is not satisfied
|
|
|
|
}
|