error[E0277]: the trait bound `Option: Copy` is not satisfied --> $DIR/nll-fail.rs:12:37 | LL | let arr: [Option; 2] = [x; 2]; | ^^^^^^ the trait `Copy` is not implemented for `Option` | = help: the following implementations were found: as Copy> = note: the `Copy` trait is required because the repeated element will be copied error[E0277]: the trait bound `Option: Copy` is not satisfied --> $DIR/nll-fail.rs:18:37 | LL | let arr: [Option; 2] = [x; 2]; | ^^^^^^ the trait `Copy` is not implemented for `Option` | = help: the following implementations were found: as Copy> = note: the `Copy` trait is required because the repeated element will be copied error: aborting due to 2 previous errors For more information about this error, try `rustc --explain E0277`.