mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-22 14:02:22 -05:00
Merge pull request #1131 from johnmendel/main
fix(traits5): make exercise prefer trait-based solution
This commit is contained in:
commit
26b347a8bd
1 changed files with 8 additions and 4 deletions
|
@ -18,16 +18,20 @@ pub trait OtherTrait {
|
|||
}
|
||||
}
|
||||
|
||||
struct SomeStruct {
|
||||
name: String,
|
||||
}
|
||||
struct SomeStruct {}
|
||||
struct OtherStruct {}
|
||||
|
||||
impl SomeTrait for SomeStruct {}
|
||||
impl OtherTrait for SomeStruct {}
|
||||
impl SomeTrait for OtherStruct {}
|
||||
impl OtherTrait for OtherStruct {}
|
||||
|
||||
// YOU MAY ONLY CHANGE THE NEXT LINE
|
||||
fn some_func(item: ??) -> bool {
|
||||
item.some_function() && item.other_function()
|
||||
}
|
||||
|
||||
fn main() {}
|
||||
fn main() {
|
||||
some_func(SomeStruct {});
|
||||
some_func(OtherStruct {});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue