mirror of
https://github.com/google/comprehensive-rust.git
synced 2025-06-10 11:27:30 +02:00
Rephrase bullet point in copy/clone slide
This commit is contained in:
parent
87b26c78c0
commit
4fd8a2ca62
@ -43,6 +43,6 @@ In the above example, try the following:
|
|||||||
|
|
||||||
* Add a `String` field to `struct Point`. It will not compile because `String` is not a `Copy` type.
|
* Add a `String` field to `struct Point`. It will not compile because `String` is not a `Copy` type.
|
||||||
* Remove `Copy` from the `derive` attribute. The compiler error is now in the `println!` for `p1`.
|
* Remove `Copy` from the `derive` attribute. The compiler error is now in the `println!` for `p1`.
|
||||||
* Show that it works if you then clone `p1`.
|
* Show that it works if you clone `p1` instead.
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user