Skip to content

Instantly share code, notes, and snippets.

@dbalabka
Created October 1, 2019 18:32
Show Gist options
  • Save dbalabka/47b434e4cc0597258d7b31aa8cf3c8ae to your computer and use it in GitHub Desktop.
Save dbalabka/47b434e4cc0597258d7b31aa8cf3c8ae to your computer and use it in GitHub Desktop.
Bidirectional type inference in dart
void main() {
print(foo('bar'));
// will rise an error
foo(1);
}
foo ($s) {
return 'foo' + $s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment