We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e3136d6 + 9f9c0c2 commit fc573c3Copy full SHA for fc573c3
src/rust-2021/prelude.md
@@ -75,7 +75,7 @@ We can fix this by using fully qualified syntax:
75
```rust,ignore
76
fn main() {
77
// Now it is clear which trait method we're referring to
78
- <Vec<i32> as MyTrait<()>::from_iter(None);
+ <Vec<i32> as MyTrait<()>>::from_iter(None);
79
}
80
```
81
0 commit comments