mirror of
https://git.aramjonghu.dev/AramJonghu/rustlings.git
synced 2026-09-12 12:33:29 +02:00
feat: traits done
This commit is contained in:
@@ -19,7 +19,7 @@ impl SomeTrait for OtherStruct {}
|
||||
impl OtherTrait for OtherStruct {}
|
||||
|
||||
// TODO: Fix the compiler error by only changing the signature of this function.
|
||||
fn some_func(item: ???) -> bool {
|
||||
fn some_func(item: impl SomeTrait + OtherTrait) -> bool {
|
||||
item.some_function() && item.other_function()
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user