]> git.lizzy.rs Git - rust.git/blobdiff - library/core/src/clone.rs
Rollup merge of #85766 - workingjubilee:file-options, r=yaahc
[rust.git] / library / core / src / clone.rs
index 281ff3badfbd8de32fc47e83cfeec042890dbd67..6f9579043c37d0fc74973ec66a6ea0609598931e 100644 (file)
@@ -93,7 +93,6 @@
 ///
 /// * Function item types (i.e., the distinct types defined for each function)
 /// * Function pointer types (e.g., `fn() -> i32`)
-/// * Array types, for all sizes, if the item type also implements `Clone` (e.g., `[i32; 123456]`)
 /// * Tuple types, if each component also implements `Clone` (e.g., `()`, `(i32, bool)`)
 /// * Closure types, if they capture no value from the environment
 ///   or if all such captured values implement `Clone` themselves.