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.
1 parent e3136d6 commit 9f9c0c2Copy full SHA for 9f9c0c2
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