Skip to content

Commit d3cf0c6

Browse files
committed
Arrays can impl Copy/Clone themselves
1 parent e25fcd8 commit d3cf0c6

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/special-types-and-traits.md

-2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ For unions, this means all variants have to be `Copy`.
6868
`Copy` is implemented by the compiler for
6969

7070
* [Tuples] of `Copy` types
71-
* [Arrays] of `Copy` types
7271
* [Function pointers]
7372
* [Function items]
7473
* [Closures] that capture no values or that only capture values of `Copy` types
@@ -81,7 +80,6 @@ types:
8180

8281
* Types with a built-in `Copy` implementation (see above)
8382
* [Tuples] of `Clone` types
84-
* [Arrays] of `Clone` types
8583

8684
## `Send`
8785

0 commit comments

Comments
 (0)