Skip to content

Instantly share code, notes, and snippets.

@TonyLovesDevOps
Created December 11, 2022 13:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TonyLovesDevOps/acfb9de56b2d2e8afb28d1e6743edbab to your computer and use it in GitHub Desktop.
Save TonyLovesDevOps/acfb9de56b2d2e8afb28d1e6743edbab to your computer and use it in GitHub Desktop.
operators.dart typecast error
// Reproduces error in https://github.com/fireship-io/dart-course/blob/main/bin/operators.dart#L37-L39
void main() {
var number = 23 as String;
number is String; // true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment