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
Provide a warning to the user when a control flow with a body is likely accidentally closed
Examples:
// will print here
if true. {
print("here").
}
// will print not possible
until 10 > 20. {
print("not possible").
}
examples such as these are likely always unintentional. We can provide the lowest level diagnostic level "hint" to indicate this is likely unintended without distracting in the rare case it is.
The text was updated successfully, but these errors were encountered:
Provide a warning to the user when a control flow with a body is likely accidentally closed
Examples:
examples such as these are likely always unintentional. We can provide the lowest level diagnostic level "hint" to indicate this is likely unintended without distracting in the rare case it is.
The text was updated successfully, but these errors were encountered: