Created
May 17, 2018 10:29
-
-
Save tensor-programming/ecb2030a914a71eca979816661a8d932 to your computer and use it in GitHub Desktop.
#33149 of dartSDK
This file contains 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
// in lib folder | |
import 'b.dart'; | |
class A { | |
final B b; | |
A(this.b); | |
} |
This file contains 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
// in lib folder | |
class B {} |
This file contains 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
// in lib folder | |
import 'a.dart'; | |
import 'package:test_bug/b.dart'; | |
class C { | |
final A a = A(B()); //error at this line. | |
} |
This file contains 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
// in bin folder | |
void main() {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment