mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-22 05:52:23 -05:00
parent
300cdc27dd
commit
a0a06232ce
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