rustlings/exercises/15_traits/traits5.rs

34 lines
660 B
Rust
Raw Normal View History

2022-02-25 11:41:36 -05:00
// Your task is to replace the '??' sections so the code compiles.
//
2022-07-17 18:27:57 -04:00
// Don't change any line other than the marked one.
2022-02-25 11:41:36 -05:00
2024-05-22 09:04:12 -04:00
trait SomeTrait {
2022-02-25 11:41:36 -05:00
fn some_function(&self) -> bool {
true
}
}
2024-05-22 09:04:12 -04:00
trait OtherTrait {
2022-02-25 11:41:36 -05:00
fn other_function(&self) -> bool {
true
}
}
struct SomeStruct {}
struct OtherStruct {}
2022-02-25 11:41:36 -05:00
impl SomeTrait for SomeStruct {}
impl OtherTrait for SomeStruct {}
impl SomeTrait for OtherStruct {}
impl OtherTrait for OtherStruct {}
2022-02-25 11:41:36 -05:00
2022-07-17 18:27:57 -04:00
// YOU MAY ONLY CHANGE THE NEXT LINE
2022-02-25 11:41:36 -05:00
fn some_func(item: ??) -> bool {
item.some_function() && item.other_function()
}
fn main() {
some_func(SomeStruct {});
some_func(OtherStruct {});
}