first commit
This commit is contained in:
commit
4cd2267497
10 changed files with 644 additions and 0 deletions
4
examples/traits.rs
Normal file
4
examples/traits.rs
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
fn main() {
|
||||
let _: &dyn Eq = &123;
|
||||
let _: &dyn Iterator = &vec![123].into_iter();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue