2023-07-21 10:59:28 -05:00
|
|
|
static _MAYBE_STRINGS: [Option<String>; 5] = [None; 5];
|
|
|
|
//~^ ERROR the trait bound `String: Copy` is not satisfied
|
|
|
|
|
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
|
2023-07-21 10:59:28 -05: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 00:24:19 -06:00
|
|
|
//~^ ERROR the trait bound `String: Copy` is not satisfied
|
|
|
|
}
|