We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9128a9 commit 24eebb6Copy full SHA for 24eebb6
src/name-resolution.md
@@ -117,7 +117,7 @@ fn do_something<T: Default>(val: T) { // <- New rib in both types and values (1)
117
}; // End of (3)
118
// `val` is accessible, `helper` variable shadows `helper` function
119
fn helper() { // <- New rib in both types and values (4)
120
- // `val` is not accessible here, (4) is not transparent for locals)
+ // `val` is not accessible here, (4) is not transparent for locals
121
// `T` is not accessible here
122
} // End of (4)
123
let val = T::default(); // New rib (5)
0 commit comments