diff options
| author | Sam White <theodanwow@gmail.com> | 2022-02-25 16:41:36 +0000 |
|---|---|---|
| committer | mokou <mokou@fastmail.com> | 2022-07-15 14:14:15 +0200 |
| commit | 63b0c7e399ad11246bf5bf3acac4517f67c890da (patch) | |
| tree | 6a2016ef4a46493ae0bff897b493eb6b7d926f22 /info.toml | |
| parent | 599d634ee2277d1071dd803346993c24ab13462b (diff) | |
feat: add traits5.rs exercise
Diffstat (limited to 'info.toml')
| -rw-r--r-- | info.toml | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -727,6 +727,17 @@ Instead of using concrete types as parameters you can use traits. Try replacing See the documentation at: https://doc.rust-lang.org/book/ch10-02-traits.html#traits-as-parameters """ +[[exercises]] +name = "traits5" +path = "exercises/traits/traits5.rs" +mode = "compile" +hint = """ +To ensure a paramter implements multiple traits use the '+ syntax'. Try replacing the +'??' with 'impl <> + <>'. + +See the documentation at: https://doc.rust-lang.org/book/ch10-02-traits.html#specifying-multiple-trait-bounds-with-the--syntax +""" + # QUIZ 3 [[exercises]] |
