Created
October 1, 2019 18:32
-
-
Save dbalabka/47b434e4cc0597258d7b31aa8cf3c8ae to your computer and use it in GitHub Desktop.
Bidirectional type inference in dart
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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