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
Expressions within a conditional operator that modify variables used in a widened bounds expression currently do not kill the widened bounds. For example,
void f(nt_array_ptr<char> p : count(i), unsigned i, int flag) {
if (*(p + i)) {
// The i++ expression should kill the widened bounds of p.
flag ? i++ : i;
}
}
The text was updated successfully, but these errors were encountered:
This issue was copied from checkedc/checkedc-clang#895
Expressions within a conditional operator that modify variables used in a widened bounds expression currently do not kill the widened bounds. For example,
The text was updated successfully, but these errors were encountered: