Created
April 16, 2017 09:46
-
-
Save BlackHC/6bd148bfd2023c49db11103b2eb67f79 to your computer and use it in GitHub Desktop.
Shadowing of imported symbols
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
class MyClass { | |
static final value = 1; | |
} |
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
import ‘a.dart’; | |
class MyClass { | |
static final value = 10; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment