Skip to content

Instantly share code, notes, and snippets.

@kwalrath
Created June 15, 2021 18:48
Show Gist options
  • Save kwalrath/d076253e8b4f7ae4d450a13a8aad96c5 to your computer and use it in GitHub Desktop.
Save kwalrath/d076253e8b4f7ae4d450a13a8aad96c5 to your computer and use it in GitHub Desktop.
URL bug
class C {
int? i; // (1)
void f() {
if (i == null) return;
print(i.isEven); // (2) ERROR
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment