Skip to content

Instantly share code, notes, and snippets.

@HosseinYousefi
Created April 17, 2023 12:43
Show Gist options
  • Save HosseinYousefi/180fb57011e9dbaa6949bbf7e709ea57 to your computer and use it in GitHub Desktop.
Save HosseinYousefi/180fb57011e9dbaa6949bbf7e709ea57 to your computer and use it in GitHub Desktop.
class A {
static int g() {
print('happens');
return 42;
}
static final int f = g();
}
void main() {
print('hmm?');
// A.f;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment