mirror of
https://github.com/rust-lang/rustlings.git
synced 2024-11-08 09:09:17 +01:00
40 lines
722 B
Rust
40 lines
722 B
Rust
trait SomeTrait {
|
|
fn some_function(&self) -> bool {
|
|
true
|
|
}
|
|
}
|
|
|
|
trait OtherTrait {
|
|
fn other_function(&self) -> bool {
|
|
true
|
|
}
|
|
}
|
|
|
|
struct SomeStruct;
|
|
impl SomeTrait for SomeStruct {}
|
|
impl OtherTrait for SomeStruct {}
|
|
|
|
struct OtherStruct;
|
|
impl SomeTrait for OtherStruct {}
|
|
impl OtherTrait for OtherStruct {}
|
|
|
|
fn some_func(item: impl SomeTrait + OtherTrait) -> bool {
|
|
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
item.some_function() && item.other_function()
|
|
}
|
|
|
|
fn main() {
|
|
// You can optionally experiment here.
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_some_func() {
|
|
assert!(some_func(SomeStruct));
|
|
assert!(some_func(OtherStruct));
|
|
}
|
|
}
|