You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'a:{let x:i32 = 0;'b:{let z:&'b i32;'c:{// Must use 'b here because the reference to x is// being passed to the scope 'b.let y:&'b i32 = &'b x;
z = y;}}}
Why mark y with 'b, but not z with 'c? Are there any references on lifetime eval?
The text was updated successfully, but these errors were encountered:
Why mark y with 'b, but not z with 'c? Are there any references on lifetime eval?
The text was updated successfully, but these errors were encountered: