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 8e6aa34 + 6018ecc commit d880e6aCopy full SHA for d880e6a
src/lifetimes.md
@@ -55,7 +55,7 @@ likely desugar to the following:
55
let y: &'b i32 = &'b x;
56
'c: {
57
// ditto on 'c
58
- let z: &'c &'b i32 = &'c y;
+ let z: &'c &'b i32 = &'c y; // "a reference to a reference to an i32" (with lifetimes annotated)
59
}
60
61
0 commit comments