Minor type fix (#1337)
This commit is contained in:
parent
8b363fba6d
commit
8c4e15a49a
|
|
@ -122,7 +122,7 @@ Now let's extend `bar` a bit by adding one more variable, `y`:
|
||||||
```rust,ignore
|
```rust,ignore
|
||||||
fn bar<'a, T>(t: &'a T) {
|
fn bar<'a, T>(t: &'a T) {
|
||||||
let x: for<'b> fn(&'b u32) = ...;
|
let x: for<'b> fn(&'b u32) = ...;
|
||||||
let y: for<'c> fn(&'b u32) = ...;
|
let y: for<'c> fn(&'c u32) = ...;
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue