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
function*sample(){consta=yield1// error, as expected, a is implicitly anyconst{ b }=yield1// no error, but expected, b is implicitly anyconst[c]=yield1// no error, but expected, c is implicitly any}
π Actual behavior
b, c implicitly have type any, but no error reported