summaryrefslogtreecommitdiff
path: root/exercises/traits/traits5.rs
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/traits/traits5.rs')
-rw-r--r--exercises/traits/traits5.rs32
1 files changed, 32 insertions, 0 deletions
diff --git a/exercises/traits/traits5.rs b/exercises/traits/traits5.rs
new file mode 100644
index 0000000..290c047
--- /dev/null
+++ b/exercises/traits/traits5.rs
@@ -0,0 +1,32 @@
+// traits5.rs
+//
+// Your task is to replace the '??' sections so the code compiles.
+// Don't change any line other than 27.
+// Execute `rustlings hint traits5` or use the `hint` watch subcommand for a hint.
+
+// I AM NOT DONE
+
+pub trait SomeTrait {
+ fn some_function(&self) -> bool {
+ true
+ }
+}
+
+pub trait OtherTrait {
+ fn other_function(&self) -> bool {
+ true
+ }
+}
+
+struct SomeStruct {
+ name: String,
+}
+
+impl SomeTrait for SomeStruct {}
+impl OtherTrait for SomeStruct {}
+
+fn some_func(item: ??) -> bool {
+ item.some_function() && item.other_function()
+}
+
+fn main() {}