Skip to content

Instantly share code, notes, and snippets.

@gaetschwartz
Last active September 12, 2021 11:38
Show Gist options
  • Save gaetschwartz/05940854391c4e84c5f2c537f689d340 to your computer and use it in GitHub Desktop.
Save gaetschwartz/05940854391c4e84c5f2c537f689d340 to your computer and use it in GitHub Desktop.
class C {
C();
int i = 0;
}
void main() {
final myClass = C();
for (final i = myClass; i.i < 5; i.i++) {}
print(myClass.i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment