Created
February 22, 2020 22:39
-
-
Save ThinkDigitalSoftware/ec30fcfcf71e5812b3aa6b58e88e2e67 to your computer and use it in GitHub Desktop.
Invalid analyzer conversion
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() { | |
Function func; | |
func = () { | |
func2(); | |
}; | |
print(func()); | |
func = () => func2(); | |
print(func()); | |
} | |
String func2() => "func2 return value"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment